wip
This commit is contained in:
parent
094d873f2e
commit
57669c9c03
3 changed files with 24 additions and 5 deletions
|
@ -91,10 +91,12 @@ function genValue(c: tinycolor.Instance): string {
|
||||||
|
|
||||||
export const lightTheme = require('../theme/light.json');
|
export const lightTheme = require('../theme/light.json');
|
||||||
export const darkTheme = require('../theme/dark.json');
|
export const darkTheme = require('../theme/dark.json');
|
||||||
|
export const pinkTheme = require('../theme/pink.json');
|
||||||
export const halloweenTheme = require('../theme/halloween.json');
|
export const halloweenTheme = require('../theme/halloween.json');
|
||||||
|
|
||||||
export const builtinThemes = [
|
export const builtinThemes = [
|
||||||
lightTheme,
|
lightTheme,
|
||||||
darkTheme,
|
darkTheme,
|
||||||
|
pinkTheme,
|
||||||
halloweenTheme
|
halloweenTheme
|
||||||
];
|
];
|
||||||
|
|
|
@ -39,16 +39,16 @@
|
||||||
"renoteText": "#9dbb00",
|
"renoteText": "#9dbb00",
|
||||||
"quoteBorder": "#c0dac6",
|
"quoteBorder": "#c0dac6",
|
||||||
"noteText": "#717171",
|
"noteText": "#717171",
|
||||||
"noteHeaderName": "#627079",
|
"noteHeaderName": ":darken<2<$text",
|
||||||
"noteHeaderBadgeFg": "#aaa",
|
"noteHeaderBadgeFg": "#aaa",
|
||||||
"noteHeaderBadgeBg": "rgba(0, 0, 0, 0.05)",
|
"noteHeaderBadgeBg": "rgba(0, 0, 0, 0.05)",
|
||||||
"noteHeaderAdminFg": "#f15f71",
|
"noteHeaderAdminFg": "#f15f71",
|
||||||
"noteHeaderAdminBg": "#ffdfdf",
|
"noteHeaderAdminBg": "#ffdfdf",
|
||||||
"noteHeaderAcct": "#ccc",
|
"noteHeaderAcct": ":alpha<0.7<@noteHeaderName",
|
||||||
"noteHeaderInfo": "#c0c0c0",
|
"noteHeaderInfo": ":alpha<0.7<@noteHeaderName",
|
||||||
|
|
||||||
"noteActions": "#ddd",
|
"noteActions": ":alpha<0.3<$text",
|
||||||
"noteActionsHover": "#444",
|
"noteActionsHover": ":alpha<0.9<$text",
|
||||||
"noteActionsReplyHover": "#0af",
|
"noteActionsReplyHover": "#0af",
|
||||||
"noteActionsRenoteHover": "#8d0",
|
"noteActionsRenoteHover": "#8d0",
|
||||||
"noteActionsReactionHover": "#fa0",
|
"noteActionsReactionHover": "#fa0",
|
||||||
|
|
17
src/client/theme/pink.json
Normal file
17
src/client/theme/pink.json
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"meta": {
|
||||||
|
"id": "e9c8c01d-9c15-48d0-9b5c-3d00843b5b36",
|
||||||
|
"name": "Pink",
|
||||||
|
"author": "syuilo",
|
||||||
|
"base": "light",
|
||||||
|
"vars": {
|
||||||
|
"primary": "rgb(251, 78, 112)",
|
||||||
|
"secondary": "rgb(255, 218, 240)",
|
||||||
|
"text": "rgb(113, 91, 102)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"renoteGradient": "#ffb1c9",
|
||||||
|
"renoteText": "#ff588d",
|
||||||
|
"quoteBorder": "#ff6c9b"
|
||||||
|
}
|
Loading…
Reference in a new issue