added new color to theming.ts

This commit is contained in:
Kim, Jimin 2022-01-17 20:10:21 +09:00
parent 6bc48a6905
commit 34e15b637b
2 changed files with 3 additions and 1 deletions

View file

@ -7,7 +7,7 @@ export const cardCSS = css`
background-color: ${(props) => background-color: ${(props) =>
theming.theme(props.theme.currentTheme, { theming.theme(props.theme.currentTheme, {
light: "white", light: "white",
dark: "#2F3136", dark: theming.dark.backgroundColor2,
})}; })};
padding: 2rem; padding: 2rem;
border-radius: 6px; border-radius: 6px;

View file

@ -35,12 +35,14 @@ export default {
dark: { dark: {
backgroundColor0: "#202225", backgroundColor0: "#202225",
backgroundColor1: "#36393F", backgroundColor1: "#36393F",
backgroundColor2: "#2F3136",
color0: "#FFFFFF", color0: "#FFFFFF",
color1: "#EEEEEE", color1: "#EEEEEE",
}, },
light: { light: {
backgroundColor0: "#FFFFFF", backgroundColor0: "#FFFFFF",
backgroundColor1: "#F7F7F7", backgroundColor1: "#F7F7F7",
backgroundColor2: "#DDDDDD",
color0: "#000000", color0: "#000000",
color1: "#111111", color1: "#111111",
}, },