colors generations based on wallpaper

This commit is contained in:
2024-12-25 20:51:20 +01:00
parent d9177984de
commit b8eb109cdd
19 changed files with 552 additions and 67 deletions

105
.config/swaync/colors.css Normal file
View File

@@ -0,0 +1,105 @@
/*
* Css Colors
* Generated with Matugen
*/
@define-color background #151218;
@define-color error #ffb4ab;
@define-color error_container #93000a;
@define-color inverse_on_surface #322f35;
@define-color inverse_primary #6a538c;
@define-color inverse_surface #e7e0e8;
@define-color on_background #e7e0e8;
@define-color on_error #690005;
@define-color on_error_container #ffdad6;
@define-color on_primary #3b255b;
@define-color on_primary_container #eddcff;
@define-color on_primary_fixed #250e44;
@define-color on_primary_fixed_variant #523c73;
@define-color on_secondary #352d40;
@define-color on_secondary_container #ebddf7;
@define-color on_secondary_fixed #1f182a;
@define-color on_secondary_fixed_variant #4c4357;
@define-color on_surface #e7e0e8;
@define-color on_surface_variant #cbc4cf;
@define-color on_tertiary #4b252e;
@define-color on_tertiary_container #ffd9df;
@define-color on_tertiary_fixed #321019;
@define-color on_tertiary_fixed_variant #643b44;
@define-color outline #958e99;
@define-color outline_variant #4a454e;
@define-color primary #d6bbfb;
@define-color primary_container #523c73;
@define-color primary_fixed #eddcff;
@define-color primary_fixed_dim #d6bbfb;
@define-color scrim #000000;
@define-color secondary #cec2db;
@define-color secondary_container #4c4357;
@define-color secondary_fixed #ebddf7;
@define-color secondary_fixed_dim #cec2db;
@define-color shadow #000000;
@define-color source_color #6f22cd;
@define-color surface #151218;
@define-color surface_bright #3b383e;
@define-color surface_container #211e24;
@define-color surface_container_high #2c292f;
@define-color surface_container_highest #37333a;
@define-color surface_container_low #1d1a20;
@define-color surface_container_lowest #100d12;
@define-color surface_dim #151218;
@define-color surface_tint #d6bbfb;
@define-color surface_variant #4a454e;
@define-color tertiary #f1b7c2;
@define-color tertiary_container #643b44;
@define-color tertiary_fixed #ffd9df;
@define-color tertiary_fixed_dim #f1b7c2;

View File

@@ -1,49 +1,51 @@
@import url("colors.css");
.control-center {
border-radius: 0 0 1em 1em;
background-color: rgba(49, 50, 68, 0.9);
border: 3px solid #cdd6f4;
background-color: @background;
border: 3px solid @primary;
border-top: none;
padding: 1em;
color: #cdd6f4;
color: @primary;
}
.control-center-clear-all {
border: 3px solid #b4befe;
border: 3px solid @primary;
border-radius: 5em;
box-shadow: inset #89dceb 0 0 0.5em;
box-shadow: inset @primary 0 0 0.5em;
}
.control-center-dnd {
background-color: #cba6f7;
background-color: @primary;
transition: 25ms linear;
}
.control-center-dnd:checked {
background-color: #f5c2e7;
background-color: @tertiary;
}
.control-center-dnd slider {
background-color: #6c7086;
border: 1px solid #6c7086;
box-shadow: inset #6c7086 0 0 0.5em;
background-color: @primary_container;
border: 1px solid @primary_container;
box-shadow: inset @primary_container 0 0 0.5em;
}
.notification {
border: 3px solid #cdd6f4;
border: 3px solid @surface_container;
border-radius: 1em;
background-color: rgba(49, 50, 68, 0.7);
background-color: @primary_container;
}
.notification-default-action {
box-shadow: inset #89dceb 0 0 0.5em;
box-shadow: inset @surface_container 0 0 0.5em;
}
.notification-default-action:hover {
background-color: rgba(49, 50, 68, 0.8);
box-shadow: inset #89dceb 0 0 0.5em;
background-color: @primary_container;
box-shadow: inset @surface 0 0 0.5em;
}
.close-button {
border: 3px solid #cdd6f4;
box-shadow: inset #89dceb 0 0 0.5em;
border: 3px solid @on_primary_container;
box-shadow: inset @on_primary_container 0 0 0.5em;
}