Skip to content

Commit

Permalink
fix some text0 stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
refact0r committed Apr 7, 2024
1 parent c864ff1 commit 13442e3
Showing 1 changed file with 80 additions and 1 deletion.
81 changes: 80 additions & 1 deletion midnight.css
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ path[fill='var(--white-500)'] {
background: var(--bg-1) !important;
}
.container__2ed72.checked__36fdc > .slider__41d94 > rect /* settings checkbutton circle */,
.userMenuItem__7b29e path[fill="var(--white-500)"] /* account switcher account hover */ {
.userMenuItem__7b29e path[fill="var(--white-500)"] /* account switcher account hover */,
.colorDefault_e361cf.focused_dcafb9 path {
fill: var(--text-0);
}
.closeIcon__967e7 path /* alert banner close icon */ {
Expand All @@ -232,6 +233,12 @@ path[fill='var(--white-500)'] {
.container__2ed72 > .slider__41d94 > rect /* settings checkbutton circle */ {
fill: var(--text-1);
}
.menu__13d0c .menuItemFocused__7beab {
color: var(--text-3);
}
.menu__13d0c .menuItemFocused__7beab path {
fill: var(--text-3);
}
.mini_d6d84c .grabber_e3daf3 /* spotify bar handle */ {
margin-top: 4px;
border-width: 1px;
Expand Down Expand Up @@ -1142,3 +1149,75 @@ html.theme-light,
scrollbar-color: unset !important;
scrollbar-width: unset !important;
}

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

/* top left corner text */
--corner-text: 'Catppuccin';

/* color of status indicators and window controls */
--online-indicator: #a6e3a1; /* change to #23a55a for default green */
--dnd-indicator: #f38ba8; /* change to #f13f43 for default red */
--idle-indicator: #f9e2af; /* change to #f0b232 for default yellow */
--streaming-indicator: #cba6f7; /* change to #593695 for default purple */

/* accent colors */
--accent-1: hsl(267, 84%, 81%); /* links */
--accent-2: hsl(267, 84%, 81%); /* general unread/mention elements */
--accent-3: hsl(267, 84%, 81%); /* accent buttons */
--accent-4: hsl(267, 70%, 73%); /* accent buttons when hovered */
--accent-5: hsl(267, 55%, 65%); /* accent buttons when clicked */
--mention: hsla(267, 70%, 71%, 0.1); /* mentions & mention messages */
--mention-hover: hsla(267, 70%, 71%, 0.05); /* mentions & mention messages when hovered */

/* text colors */
--text-0: var(--bg-4); /* text on colored elements */
--text-1: hsl(220, 40%, 95%); /* bright text on colored elements */
--text-2: hsl(226, 64%, 88%); /* headings and important text */
--text-3: hsl(228, 24%, 72%); /* normal text */
--text-4: hsl(230, 13%, 55%); /* icon buttons and channels */
--text-5: hsl(233, 12%, 39%); /* muted channels/chats and timestamps */

/* background and dark colors */
--bg-1: hsl(234, 13%, 31%); /* dark buttons when clicked */
--bg-2: hsl(237, 16%, 23%); /* dark buttons */
--bg-3: hsl(240, 21%, 12%); /* spacing, secondary elements */
--bg-4: hsl(240, 21%, 15%); /* main background color */
--hover: hsla(237, 18%, 53%, 0.1); /* channels and buttons when hovered */
--active: hsla(235, 15%, 53%, 0.2); /* channels and buttons when clicked or selected */
--message-hover: hsla(240, 0%, 0%, 0.1); /* messages when hovered */

/* amount of spacing and padding */
--spacing: 12px;

/* animations */
/* ALL ANIMATIONS CAN BE DISABLED WITH REDUCED MOTION IN DISCORD SETTINGS */
--list-item-transition: 0.2s ease; /* channels/members/settings hover transition */
--unread-bar-transition: 0.2s ease; /* unread bar moving into view transition */
--moon-spin-transition: 0.4s ease; /* moon icon spin */
--icon-spin-transition: 1s ease; /* round icon button spin (settings, emoji, etc.) */

/* corner roundness (border-radius) */
--roundness-xl: 22px; /* roundness of big panel outer corners */
--roundness-l: 20px; /* popout panels */
--roundness-m: 16px; /* smaller panels, images, embeds */
--roundness-s: 12px; /* members, settings inputs */
--roundness-xs: 10px; /* channels, buttons */
--roundness-xxs: 8px; /* searchbar, small elements */

/* direct messages moon icon */
/* change to block to show, none to hide */
--discord-icon: none; /* discord icon */
--moon-icon: none; /* moon icon */
--moon-icon-url: none; /* custom icon url */
--moon-icon-size: auto;

/* filter uncolorable elements to fit theme */
/* (just set to none, they're too much work to configure) */
--login-bg-filter: none; /* login background artwork */
--green-to-accent-3-filter: none; /* add friend page explore icon */
--blurple-to-accent-3-filter: none; /* add friend page school icon */
}

0 comments on commit 13442e3

Please sign in to comment.