Themes adjusted, added additional theme values
This commit is contained in:
parent
8d41694e0c
commit
6f0425e3e9
2 changed files with 36 additions and 28 deletions
|
@ -1,62 +1,66 @@
|
||||||
{
|
{
|
||||||
"themes": [
|
"themes": [
|
||||||
{
|
{
|
||||||
"themeName": "Light Theme",
|
"themeName": "Cancer - Blue",
|
||||||
"themeId": 0,
|
"themeId": 0,
|
||||||
"colors": {
|
"colors": {
|
||||||
"background": "#ffffff",
|
"background": "#ffffff",
|
||||||
"primary": "#00aaff",
|
"primary": "#00AAFF",
|
||||||
"secondary": "#ff5300",
|
"secondary": "#FF5500",
|
||||||
"online": "#00ff00",
|
"online": "#2BFF00",
|
||||||
"loading": "#ff5300",
|
"loading": "#D400FF",
|
||||||
"offline": "#ff0000"
|
"offline": "#FF002B"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"themeName": "Dark Theme",
|
"themeName": "Dark - Blue",
|
||||||
"themeId": 1,
|
"themeId": 1,
|
||||||
"colors": {
|
"colors": {
|
||||||
"background": "#1f1f1f",
|
"background": "#161616",
|
||||||
"primary": "#00aaff",
|
"primary": "#00AAFF",
|
||||||
"secondary": "#ff5300",
|
"secondary": "#FF5500",
|
||||||
"online": "#00ff00",
|
"online": "#2BFF00",
|
||||||
"loading": "#ff5300",
|
"loading": "#D400FF",
|
||||||
"offline": "#ff0000"
|
"offline": "#FF002B"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"themeName": "AMOLED Theme",
|
"themeName": "AMOLED - Blue",
|
||||||
"themeId": 2,
|
"themeId": 2,
|
||||||
"colors": {
|
"colors": {
|
||||||
"background": "#000000",
|
"background": "#000000",
|
||||||
"primary": "#00aaff",
|
"primary": "#00AAFF",
|
||||||
"secondary": "#ff5300",
|
"secondary": "#FF5500",
|
||||||
"online": "#00ff00",
|
"online": "#2BFF00",
|
||||||
"loading": "#ff5300",
|
"loading": "#D400FF",
|
||||||
"offline": "#ff0000"
|
"offline": "#FF002B"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"themeName": "AMOLED Theme 2",
|
"themeName": "AMOLED - Purple",
|
||||||
"themeId": 3,
|
"themeId": 3,
|
||||||
"colors": {
|
"colors": {
|
||||||
"background": "#000000",
|
"background": "#000000",
|
||||||
"primary": "#00ffaa",
|
"primary": "#886aff",
|
||||||
"secondary": "#aa00ff",
|
"secondary": "#E1FF6A",
|
||||||
"online": "#00ff00",
|
"online": "#00ff00",
|
||||||
"loading": "#ff5300",
|
"loading": "#FF6A97",
|
||||||
"offline": "#ff0000"
|
"offline": "#ff0000"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"themeName": "Custom Theme 3",
|
"themeName": "Norrsken",
|
||||||
"themeId": 4,
|
"themeId": 4,
|
||||||
|
"backgroundImage": "https://images4.alphacoders.com/112/1123390.jpg",
|
||||||
|
"invertButtons": true,
|
||||||
"colors": {
|
"colors": {
|
||||||
"background": "#000000",
|
"background": "#0008",
|
||||||
"primary": "#00ffaa",
|
"backgroundAlt": "#000d",
|
||||||
"secondary": "#aa00ff",
|
"primary": "#ccc",
|
||||||
|
"secondary": "#00C7C7",
|
||||||
|
"text": "#000",
|
||||||
"online": "#00ff00",
|
"online": "#00ff00",
|
||||||
"loading": "#ff5300",
|
"loading": "#0063C7",
|
||||||
"offline": "#ff0000"
|
"offline": "#ff0000"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
4
styled.d.ts
vendored
4
styled.d.ts
vendored
|
@ -4,10 +4,14 @@ declare module 'styled-components' {
|
||||||
export interface DefaultTheme {
|
export interface DefaultTheme {
|
||||||
themeName: string,
|
themeName: string,
|
||||||
themeId: number,
|
themeId: number,
|
||||||
|
backgroundImage?: string,
|
||||||
|
invertButtons?: boolean,
|
||||||
colors: {
|
colors: {
|
||||||
background: string,
|
background: string,
|
||||||
|
backgroundAlt?: string,
|
||||||
primary: string,
|
primary: string,
|
||||||
secondary: string,
|
secondary: string,
|
||||||
|
text?: string,
|
||||||
online: string,
|
online: string,
|
||||||
loading: string,
|
loading: string,
|
||||||
offline: string,
|
offline: string,
|
||||||
|
|
Loading…
Reference in a new issue