added new color to theming.ts
This commit is contained in:
parent
6bc48a6905
commit
34e15b637b
2 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||||
|
|
|
@ -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",
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue