Skip to content

Commit

Permalink
adjust catppuccin themes
Browse files Browse the repository at this point in the history
  • Loading branch information
refact0r committed Jan 6, 2024
1 parent db822ba commit f5ba83b
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 14 deletions.
1 change: 1 addition & 0 deletions flavors/midnight-biscuit.theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
--discord-icon: none; /* discord icon */
--moon-icon: none; /* moon icon */
--moon-icon-url: none;
--moon-icon-size: auto;

/* filter uncolorable elements to fit theme */
/* (just set to none, they're too much work to configure) */
Expand Down
24 changes: 11 additions & 13 deletions flavors/midnight-catppuccin-macchiato.theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@

@import url('https://refact0r.github.io/midnight-discord/midnight.css');

@import url('https://fonts.googleapis.com/css?family=Varela+Round');

/* customize things here */
:root {
/* font, change to 'gg sans' for default discord font*/
--font: 'Varela Round';
--font: 'figtree';

/* top left corner text */
--corner-text: 'Catppuccin';
Expand Down Expand Up @@ -86,17 +84,17 @@
}

/* color of idle and dnd status dots, change first and last fill values to #f0b232 for default yellow and the inbetween fill values to #f23f43 for default red */
rect[fill="#f0b232"],
svg[fill="#f0b232"] {
fill: #eed49f ;
rect[fill='#f0b232'],
svg[fill='#f0b232'] {
fill: #eed49f;
}
rect[fill="#f23f43"],
svg[fill="#f23f43"] {
fill: #ed8796;
rect[fill='#f23f43'],
svg[fill='#f23f43'] {
fill: #ed8796;
}
[style="background-color: rgb(242, 63, 67);"] {
background-color: #ed8796 !important;
[style='background-color: rgb(242, 63, 67);'] {
background-color: #ed8796 !important;
}
[style="background-color: rgb(240, 178, 50);"] {
background-color: #eed49f !important;
[style='background-color: rgb(240, 178, 50);'] {
background-color: #eed49f !important;
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
--corner-text: 'Catppuccin';

/* color of online status dot, change to #23a55a for default green */
--online-indicator: var(--accent-2);
--online-indicator: #a6e3a1;

/* accent colors */
--accent-1: hsl(267, 84%, 81%); /* links */
Expand Down Expand Up @@ -82,3 +82,19 @@
background-color: transparent !important;
background-size: cover;
}

/* color of idle and dnd status dots, change first and last fill values to #f0b232 for default yellow and the inbetween fill values to #f23f43 for default red */
rect[fill='#f0b232'],
svg[fill='#f0b232'] {
fill: #f9e2af;
}
rect[fill='#f23f43'],
svg[fill='#f23f43'] {
fill: #f38ba8;
}
[style='background-color: rgb(242, 63, 67);'] {
background-color: #f38ba8 !important;
}
[style='background-color: rgb(240, 178, 50);'] {
background-color: #f9e2af !important;
}

0 comments on commit f5ba83b

Please sign in to comment.