1
Fork 0

Add theming defaults.

This commit is contained in:
Bauke 2022-02-01 12:04:17 +01:00
parent 61e59cb88c
commit 7b881c6162
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
6 changed files with 4 additions and 14 deletions

View File

@ -0,0 +1,4 @@
body {
--border-radius: 8px;
--border-size: 2px;
}

View File

@ -1,6 +1,4 @@
.dracula {
--border-radius: 8px;
--border-size: 2px;
--foreground-1: #f8f8f2;
--foreground-2: #f8f8f2;
--background-1: #282a36;

View File

@ -1,6 +1,4 @@
.high-contrast-black {
--border-radius: 8px;
--border-size: 2px;
--foreground-1: #fff;
--foreground-2: #ddd;
--background-1: #000;
@ -8,8 +6,6 @@
}
.high-contrast-white {
--border-radius: 8px;
--border-size: 2px;
--foreground-1: #000;
--foreground-2: #222;
--background-1: #fff;

View File

@ -8,8 +8,6 @@
}
.love-light {
--border-radius: 8px;
--border-size: 2px;
--foreground-1: #1f1731;
--foreground-2: #2a2041;
--background-1: #f2efff;

View File

@ -1,8 +1,6 @@
@use 'sass:color';
.monokai {
--border-radius: 8px;
--border-size: 2px;
--foreground-1: #d6d6d6;
--foreground-2: #d6d6d6;
--background-1: #{color.scale(#2e2e2e, $lightness: -25%)};

View File

@ -1,6 +1,4 @@
.solarized-dark {
--border-radius: 8px;
--border-size: 2px;
--foreground-1: #839496;
--foreground-2: #93a1a1;
--background-1: #002b36;
@ -8,8 +6,6 @@
}
.solarized-light {
--border-radius: 8px;
--border-size: 2px;
--foreground-1: #657b83;
--foreground-2: #586e75;
--background-1: #fdf6e3;