Small improvements 🔨
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
b746fbf7d2
commit
6558df0558
Binary file not shown.
@ -0,0 +1,20 @@
|
|||||||
|
export interface Theme {
|
||||||
|
body: string,
|
||||||
|
Text: string,
|
||||||
|
Card: string,
|
||||||
|
Line: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export const LightTheme: Theme = {
|
||||||
|
body: "#f2f2f6",
|
||||||
|
Text: "black",
|
||||||
|
Card: "#fff",
|
||||||
|
Line: "#e2e2e3"
|
||||||
|
}
|
||||||
|
|
||||||
|
export const DarkTheme: Theme = {
|
||||||
|
body: "#141414",
|
||||||
|
Text: "white",
|
||||||
|
Card: "#232123",
|
||||||
|
Line: "#403F3F"
|
||||||
|
}
|
@ -1,6 +0,0 @@
|
|||||||
export const colorsDark = {
|
|
||||||
"body": "#141414",
|
|
||||||
"Text": "white",
|
|
||||||
"Card": "#232123",
|
|
||||||
"Line": "#403F3F"
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
export const colorsLight = {
|
|
||||||
"body": "#f2f2f6",
|
|
||||||
"Text": "black",
|
|
||||||
"Card": "#fff",
|
|
||||||
"Line": "#e2e2e3"
|
|
||||||
}
|
|
Loading…
Reference in new issue