This commit is contained in:
vinceliuice 2025-02-26 11:39:04 +08:00
parent 88d6925af5
commit a087b8f7f0
10 changed files with 51 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,6 +1,6 @@
VERSION: (GNOME-SHELL) 47.0
RELEASE TIME: Wed Jan 15 03:28:27 AM CST 2025
RELEASE TIME: Wed Feb 26 11:38:34 AM CST 2025
--->>> GTK | GNOME Shell | Cinnamon | Metacity | XFWM | Plank <<<---
Color variants : Dark;Light

View File

@ -44,6 +44,56 @@ $dark_3: #3d3846;
$dark_4: #241f31;
$dark_5: #000000;
@if $gnome_version == 'new' {
:root {
--blue-1: #{$blue_1};
--blue-2: #{$blue_2};
--blue-3: #{$blue_3};
--blue-4: #{$blue_4};
--blue-5: #{$blue_5};
--green-1: #{$green_1};
--green-2: #{$green_2};
--green-3: #{$green_3};
--green-4: #{$green_4};
--green-5: #{$green_5};
--yellow-1: #{$yellow_1};
--yellow-2: #{$yellow_2};
--yellow-3: #{$yellow_3};
--yellow-4: #{$yellow_4};
--yellow-5: #{$yellow_5};
--orange-1: #{$orange_1};
--orange-2: #{$orange_2};
--orange-3: #{$orange_3};
--orange-4: #{$orange_4};
--orange-5: #{$orange_5};
--red-1: #{$red_1};
--red-2: #{$red_2};
--red-3: #{$red_3};
--red-4: #{$red_4};
--red-5: #{$red_5};
--purple-1: #{$purple_1};
--purple-2: #{$purple_2};
--purple-3: #{$purple_3};
--purple-4: #{$purple_4};
--purple-5: #{$purple_5};
--brown-1: #{$brown_1};
--brown-2: #{$brown_2};
--brown-3: #{$brown_3};
--brown-4: #{$brown_4};
--brown-5: #{$brown_5};
--light-1: #{$light_1};
--light-2: #{$light_2};
--light-3: #{$light_3};
--light-4: #{$light_4};
--light-5: #{$light_5};
--dark-1: #{$dark_1};
--dark-2: #{$dark_2};
--dark-3: #{$dark_3};
--dark-4: #{$dark_4};
--dark-5: #{$dark_5};
}
}
// Sass thinks we're using the colors in the variables as strings and may shoot
// warning, it's innocuous and can be defeated by using #{$var}.