Themes adjusted, added additional theme values

This commit is contained in:
Neshura 2022-12-18 04:56:23 +01:00
parent 8d41694e0c
commit 6f0425e3e9
No known key found for this signature in database
GPG key ID: ACDF5B6EBECF6B0A
2 changed files with 36 additions and 28 deletions

View file

@ -1,62 +1,66 @@
{
"themes": [
{
"themeName": "Light Theme",
"themeName": "Cancer - Blue",
"themeId": 0,
"colors": {
"background": "#ffffff",
"primary": "#00aaff",
"secondary": "#ff5300",
"online": "#00ff00",
"loading": "#ff5300",
"offline": "#ff0000"
"primary": "#00AAFF",
"secondary": "#FF5500",
"online": "#2BFF00",
"loading": "#D400FF",
"offline": "#FF002B"
}
},
{
"themeName": "Dark Theme",
"themeName": "Dark - Blue",
"themeId": 1,
"colors": {
"background": "#1f1f1f",
"primary": "#00aaff",
"secondary": "#ff5300",
"online": "#00ff00",
"loading": "#ff5300",
"offline": "#ff0000"
"background": "#161616",
"primary": "#00AAFF",
"secondary": "#FF5500",
"online": "#2BFF00",
"loading": "#D400FF",
"offline": "#FF002B"
}
},
{
"themeName": "AMOLED Theme",
"themeName": "AMOLED - Blue",
"themeId": 2,
"colors": {
"background": "#000000",
"primary": "#00aaff",
"secondary": "#ff5300",
"online": "#00ff00",
"loading": "#ff5300",
"offline": "#ff0000"
"primary": "#00AAFF",
"secondary": "#FF5500",
"online": "#2BFF00",
"loading": "#D400FF",
"offline": "#FF002B"
}
},
{
"themeName": "AMOLED Theme 2",
"themeName": "AMOLED - Purple",
"themeId": 3,
"colors": {
"background": "#000000",
"primary": "#00ffaa",
"secondary": "#aa00ff",
"primary": "#886aff",
"secondary": "#E1FF6A",
"online": "#00ff00",
"loading": "#ff5300",
"loading": "#FF6A97",
"offline": "#ff0000"
}
},
{
"themeName": "Custom Theme 3",
"themeName": "Norrsken",
"themeId": 4,
"backgroundImage": "https://images4.alphacoders.com/112/1123390.jpg",
"invertButtons": true,
"colors": {
"background": "#000000",
"primary": "#00ffaa",
"secondary": "#aa00ff",
"background": "#0008",
"backgroundAlt": "#000d",
"primary": "#ccc",
"secondary": "#00C7C7",
"text": "#000",
"online": "#00ff00",
"loading": "#ff5300",
"loading": "#0063C7",
"offline": "#ff0000"
}
}

4
styled.d.ts vendored
View file

@ -4,10 +4,14 @@ declare module 'styled-components' {
export interface DefaultTheme {
themeName: string,
themeId: number,
backgroundImage?: string,
invertButtons?: boolean,
colors: {
background: string,
backgroundAlt?: string,
primary: string,
secondary: string,
text?: string,
online: string,
loading: string,
offline: string,