Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions discord/discord-midnight.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ body {
--text-1: {{colors.on_background.default.hex}}; /* other normally white text */
--text-2: {{colors.on_surface.default.hex}}; /* headings and important text */
--text-3: {{colors.on_surface_variant.default.hex}}; /* normal text */
--text-4: {{colors.outline.default.hex}}; /* icon buttons and channels */
--text-5: {{colors.outline_variant.default.hex}}; /* muted channels/chats and timestamps */
--text-4: color-mix(in srgb, {{colors.on_surface.default.hex}} 65%, {{colors.outline.default.hex}}); /* icon buttons and channels */
--text-5: color-mix(in srgb, {{colors.on_surface.default.hex}} 40%, {{colors.outline.default.hex}}); /* muted channels/chats and timestamps */

/* background and dark colors */
--bg-1: {{colors.surface_container_lowest.default.hex}}; /* dark buttons when clicked */
Expand All @@ -96,9 +96,9 @@ body {

/* accent colors */
--accent-1: {{colors.primary.default.hex}}; /* links and other accent text */
--accent-2: {{colors.primary_container.default.hex}}; /* small accent elements */
--accent-2: {{colors.primary.default.hex}}; /* small accent elements */
--accent-3: {{colors.secondary.default.hex}}; /* accent buttons */
--accent-4: {{colors.on_secondary_container.default.hex}}; /* accent buttons when hovered */
--accent-4: color-mix(in srgb, {{colors.secondary.default.hex}} 80%, {{colors.on_surface.default.hex}}); /* accent buttons when hovered */
--accent-5: {{colors.secondary.default.hex}}; /* accent buttons when clicked */
--accent-new: {{colors.error.default.hex}}; /* stuff that's normally red like mute/deafen buttons */

Expand Down