diff options
Diffstat (limited to 'app/src/main/assets/css/themes')
4 files changed, 20 insertions, 4 deletions
diff --git a/app/src/main/assets/css/themes/material_amoled.scss b/app/src/main/assets/css/themes/material_amoled.scss index 20ac414c..a0f93c7a 100644 --- a/app/src/main/assets/css/themes/material_amoled.scss +++ b/app/src/main/assets/css/themes/material_amoled.scss @@ -1,2 +1,6 @@ -@import "../core/colors_amoled"; +$text: #fff; +$link: #eee; +$background: #000; +$bg_transparent: #000; + @import "../core/main"; diff --git a/app/src/main/assets/css/themes/material_dark.scss b/app/src/main/assets/css/themes/material_dark.scss index ad6263d5..7bbf7ad0 100644 --- a/app/src/main/assets/css/themes/material_dark.scss +++ b/app/src/main/assets/css/themes/material_dark.scss @@ -1,2 +1,6 @@ -@import "../core/colors_dark"; +$text: #fff; +$link: #eee; +$background: #303030; +$bg_transparent: #303030; + @import "../core/main"; diff --git a/app/src/main/assets/css/themes/material_glass.scss b/app/src/main/assets/css/themes/material_glass.scss index 273a66a6..ce341b0a 100644 --- a/app/src/main/assets/css/themes/material_glass.scss +++ b/app/src/main/assets/css/themes/material_glass.scss @@ -1,2 +1,6 @@ -@import "../core/colors_glass"; +$text: #fff; +$link: #eee; +$background: rgba(#000, 0.3); +$bg_transparent: transparent; + @import "../core/main"; diff --git a/app/src/main/assets/css/themes/material_light.scss b/app/src/main/assets/css/themes/material_light.scss index 624a57a4..f0b35a00 100644 --- a/app/src/main/assets/css/themes/material_light.scss +++ b/app/src/main/assets/css/themes/material_light.scss @@ -1,2 +1,6 @@ -@import "../core/colors_light"; +$text: #000; +$link: #111; +$background: #fafafa; +$bg_transparent: #fafafa; + @import "../core/main"; |