summaryrefslogtreecommitdiff
path: root/themes/tabi-lean/sass/skins/posixlycorrect.scss
diff options
context:
space:
mode:
Diffstat (limited to 'themes/tabi-lean/sass/skins/posixlycorrect.scss')
-rw-r--r--themes/tabi-lean/sass/skins/posixlycorrect.scss40
1 files changed, 0 insertions, 40 deletions
diff --git a/themes/tabi-lean/sass/skins/posixlycorrect.scss b/themes/tabi-lean/sass/skins/posixlycorrect.scss
deleted file mode 100644
index 47b6c2c..0000000
--- a/themes/tabi-lean/sass/skins/posixlycorrect.scss
+++ /dev/null
@@ -1,40 +0,0 @@
-/* general */
-
-
-/* theme */
-@mixin theme-variables($theme) {
- @if $theme =='light' {
- --primary-color: #FC9300;
- --background-color: #131a21;
- }
- @else if $theme == 'dark' {
- --primary-color: #FC9300;
- --background-color: #131a21;
- }
-}
-
-:root {
- @include theme-variables('light');
-}
-
-[data-theme='dark'] {
- @include theme-variables('dark');
-}
-
-@media (prefers-color-scheme: dark) {
- :root:not([data-theme='light']) {
- @include theme-variables('dark');
- }
-}
-
-
-/* header */
-.home-title {
- background-color: var(--primary-color);
- color: var(--background-color);
- padding: 0.12rem;
-}
-
-.nav-links {
- text-decoration: underline;
-}