refact!: prepare for transfer

apply @sgoudham's suggestions
ref https://github.com/catppuccin/catppuccin/issues/2696#issuecomment-2707252468

changes:
- removed every styling outside of the colors themselves (i.e. rounding,
  `text-shadow` & `padding`)
- changed the default accent color to `mauve`
- renamed flavour CSS filenames from `<f>.css` to `catppuccin-<f>.css`

Signed-off-by: Adam Perkowski <adas1per@protonmail.com>
This commit is contained in:
Adam Perkowski
2025-03-07 22:55:17 +01:00
parent 43ec38b80c
commit f3a5351eb3
15 changed files with 11 additions and 32 deletions
@@ -14,7 +14,7 @@
--blue: #8caaee;
--lavender: #babbf1;
--main-color: var(--sapphire);
--main-color: var(--mauve);
--main-background: #303446;
--second-background: #292c3c;
--hover-background: #414559;
@@ -14,7 +14,7 @@
--blue: #1e66f5;
--lavender: #7287fd;
--main-color: var(--sapphire);
--main-color: var(--mauve);
--main-background: #eff1f5;
--second-background: #e6e9ef;
--hover-background: #ccd0da;
@@ -14,7 +14,7 @@
--blue: #8aadf4;
--lavender: #b7bdf8;
--main-color: var(--sapphire);
--main-color: var(--mauve);
--main-background: #24273a;
--second-background: #1e2030;
--hover-background: #363a4f;
@@ -14,7 +14,7 @@
--blue: #89b4fa;
--lavender: #b4befe;
--main-color: var(--sapphire);
--main-color: var(--mauve);
--main-background: #1e1e2e;
--second-background: #181825;
--hover-background: #313244;
-6
View File
@@ -5,13 +5,11 @@
::-moz-selection {
background: var(--main-color);
color: var(--main-background);
text-shadow: none;
}
::selection {
background: var(--main-color);
color: var(--main-background);
text-shadow: none;
}
.mdl-slider-background-upper {
@@ -324,7 +322,3 @@ div[role=presentation].jstree-wholerow-clicked {
.itemProgressBar.backgroundProgress .itemProgressBarForeground {
background-color: var(--hover-background) !important;
}
.nowPlayingInfoControls {
padding-left: 10px;
}