From 5c3509cfbd77d9146906e5908c494981a6be2506 Mon Sep 17 00:00:00 2001 From: charlie Date: Mon, 25 Aug 2025 23:22:23 -0600 Subject: [PATCH] feat: add default omarchy themes --- .../system24-catppuccin-latte.theme.css | 161 ++++++++++++++++++ theme/flavors/system24-gruvbox.theme.css | 161 ++++++++++++++++++ theme/flavors/system24-kanagawa.theme.css | 161 ++++++++++++++++++ theme/flavors/system24-matte-black.theme.css | 161 ++++++++++++++++++ theme/flavors/system24-osaka-jade.theme.css | 161 ++++++++++++++++++ theme/flavors/system24-ristretto.theme.css | 161 ++++++++++++++++++ 6 files changed, 966 insertions(+) create mode 100644 theme/flavors/system24-catppuccin-latte.theme.css create mode 100644 theme/flavors/system24-gruvbox.theme.css create mode 100644 theme/flavors/system24-kanagawa.theme.css create mode 100644 theme/flavors/system24-matte-black.theme.css create mode 100644 theme/flavors/system24-osaka-jade.theme.css create mode 100644 theme/flavors/system24-ristretto.theme.css diff --git a/theme/flavors/system24-catppuccin-latte.theme.css b/theme/flavors/system24-catppuccin-latte.theme.css new file mode 100644 index 0000000..77337f8 --- /dev/null +++ b/theme/flavors/system24-catppuccin-latte.theme.css @@ -0,0 +1,161 @@ +/** + * @name system24 (catppuccin latte) + * @description a tui-style discord theme. based on catppuccin macchiato theme (https://catppuccin.com). + * @author refact0r + * @version 2.0.0 + * @invite nz87hXyvcy + * @website https://github.com/refact0r/system24 + * @source https://github.com/refact0r/system24/blob/master/theme/system24-catppuccin-latte.theme.css + * @authorId 508863359777505290 + * @authorLink https://www.refact0r.dev +*/ + +/* import theme modules */ +@import url('https://refact0r.github.io/system24/build/system24.css'); + +body { + /* font, change to '' for default discord font */ + --font: 'DM Mono'; /* change to '' for default discord font */ + --code-font: 'DM Mono'; /* change to '' for default discord font */ + font-weight: 300; /* text font weight. 300 is light, 400 is normal. DOES NOT AFFECT BOLD TEXT */ + letter-spacing: -0.05ch; /* decreases letter spacing for better readability. recommended on monospace fonts.*/ + + /* sizes */ + --gap: 12px; /* spacing between panels */ + --divider-thickness: 4px; /* thickness of unread messages divider and highlighted message borders */ + --border-thickness: 2px; /* thickness of borders around main panels. DOES NOT AFFECT OTHER BORDERS */ + --border-hover-transition: 0.2s ease; /* transition for borders when hovered */ + + /* animation/transition options */ + --animations: on; /* off: disable animations/transitions, on: enable animations/transitions */ + --list-item-transition: 0.2s ease; /* transition for list items */ + --dms-icon-svg-transition: 0.4s ease; /* transition for the dms icon */ + + /* top bar options */ + --top-bar-height: var(--gap); /* height of the top bar (discord default is 36px, old discord style is 24px, var(--gap) recommended if button position is set to titlebar) */ + --top-bar-button-position: titlebar; /* off: default position, hide: hide buttons completely, serverlist: move inbox button to server list, titlebar: move inbox button to channel titlebar (will hide title) */ + --top-bar-title-position: off; /* off: default centered position, hide: hide title completely, left: left align title (like old discord) */ + --subtle-top-bar-title: off; /* off: default, on: hide the icon and use subtle text color (like old discord) */ + + /* window controls */ + --custom-window-controls: off; /* off: default window controls, on: custom window controls */ + --window-control-size: 14px; /* size of custom window controls */ + + /* dms button options */ + --custom-dms-icon: hide; /* off: use default discord icon, hide: remove icon entirely, custom: use custom icon */ + --dms-icon-svg-url: url(''); /* icon svg url. MUST BE A SVG. */ + --dms-icon-svg-size: 90%; /* size of the svg (css mask-size property) */ + --dms-icon-color-before: var(--icon-secondary); /* normal icon color */ + --dms-icon-color-after: var(--white); /* icon color when button is hovered/selected */ + --custom-dms-background: image; /* off to disable, image to use a background image (must set url variable below), color to use a custom color/gradient */ + --dms-background-image-url: url('https://raw.githubusercontent.com/catppuccin/catppuccin/refs/heads/main/assets/logos/exports/latte_square.png'); /* url of the background image */ + --dms-background-image-size: cover; /* size of the background image (css background-size property) */ + --dms-background-color: linear-gradient(70deg, var(--blue-2), var(--purple-2), var(--red-2)); /* fixed color/gradient (css background property) */ + + /* background image options */ + --background-image: off; /* off: no background image, on: enable background image (must set url variable below) */ + --background-image-url: url(''); /* url of the background image */ + + /* transparency/blur options */ + /* NOTE: TO USE TRANSPARENCY/BLUR, YOU MUST HAVE TRANSPARENT BG COLORS. FOR EXAMPLE: --bg-4: hsla(220, 15%, 10%, 0.7); */ + --transparency-tweaks: off; /* off: no changes, on: remove some elements for better transparency */ + --remove-bg-layer: off; /* off: no changes, on: remove the base --bg-3 layer for use with window transparency (WILL OVERRIDE BACKGROUND IMAGE) */ + --panel-blur: off; /* off: no changes, on: blur the background of panels */ + --blur-amount: 12px; /* amount of blur */ + --bg-floating: var(--bg-3); /* set this to a more opaque color if floating panels look too transparent. only applies if panel blur is on */ + + /* other options */ + --small-user-panel: on; /* off: default user panel, on: smaller user panel like in old discord */ + + /* unrounding options */ + --unrounding: on; /* off: default, on: remove rounded corners from panels */ + + /* styling options */ + --custom-spotify-bar: on; /* off: default, on: custom text-like spotify progress bar */ + --ascii-titles: on; /* off: default, on: use ascii font for titles at the start of a channel */ + --ascii-loader: system24; /* off: default, system24: use system24 ascii loader, cats: use cats loader */ + + /* panel labels */ + --panel-labels: on; /* off: default, on: add labels to panels */ + --label-color: var(--text-muted); /* color of labels */ + --label-font-weight: 500; /* font weight of labels */ +} + +/* color options */ +:root { + --colors: on; /* off: discord default colors, on: custom colors */ + + /* text colors */ + --text-0: var(--bg-3); /* text on colored elements */ + --text-1: hsl(232.17392, 16%, 28%); /* other normally white text */ + --text-2: #4c4f69; /* headings and important text */ + --text-3: #5c5f77; /* normal text */ + --text-4: #8c8fa1; /* icon buttons and channels */ + --text-5: #acb0be; /* muted channels/chats and timestamps */ + + /* background and dark colors */ + --bg-1: #bcc0cc; /* dark buttons when clicked */ + --bg-2: #ccd0da; /* dark buttons */ + --bg-3: #e6e9ef; /* spacing, secondary elements */ + --bg-4: #eff1f5; /* main background color */ + --hover: hsla(226, 8%, 61%, 0.1); /* channels and buttons when hovered */ + --active: hsla(226, 8%, 61%, 0.2); /* channels and buttons when clicked or selected */ + --active-2: hsla(226, 8%, 61%, 0.3); /* extra state for transparent buttons */ + --message-hover: hsla(235, 0%, 100%, 0.1); /* messages when hovered */ + + /* accent colors */ + --accent-1: var(--purple-1); /* links and other accent text */ + --accent-2: var(--purple-2); /* small accent elements */ + --accent-3: var(--purple-3); /* accent buttons */ + --accent-4: var(--purple-4); /* accent buttons when hovered */ + --accent-5: var(--purple-5); /* accent buttons when clicked */ + --accent-new: var(--accent-2); /* stuff that's normally red like mute/deafen buttons */ + --mention: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 90%) 40%, transparent); /* background of messages that mention you */ + --mention-hover: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 95%) 40%, transparent); /* background of messages that mention you when hovered */ + --reply: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 90%) 40%, transparent); /* background of messages that reply to you */ + --reply-hover: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 95%) 40%, transparent); /* background of messages that reply to you when hovered */ + + /* status indicator colors */ + --online: var(--green-2); /* change to #43a25a for default */ + --dnd: var(--red-2); /* change to #d83a42 for default */ + --idle: var(--yellow-2); /* change to #ca9654 for default */ + --streaming: var(--purple-2); /* change to #593695 for default */ + --offline: var(--text-4); /* change to #83838b for default offline color */ + + /* border colors */ + --border-light: var(--hover); /* general light border color */ + --border: var(--active); /* general normal border color */ + --border-hover: var(--accent-2); /* border color of panels when hovered */ + --button-border: hsl(231, 10%, 59%); /* neutral border color of buttons */ + + /* base colors - latte */ + --red-1: hsl(347deg, 87%, 39%); + --red-2: hsl(347deg, 87%, 44%); + --red-3: hsl(347deg, 87%, 44%); + --red-4: hsl(347deg, 87%, 49%); + --red-5: hsl(347deg, 87%, 54%); + + --green-1: hsl(109deg, 58%, 35%); + --green-2: hsl(109deg, 58%, 40%); + --green-3: hsl(109deg, 58%, 40%); + --green-4: hsl(109deg, 58%, 45%); + --green-5: hsl(109deg, 58%, 50%); + + --blue-1: hsl(189deg, 70%, 37%); + --blue-2: hsl(189deg, 70%, 42%); + --blue-3: hsl(189deg, 70%, 42%); + --blue-4: hsl(189deg, 70%, 47%); + --blue-5: hsl(189deg, 70%, 52%); + + --yellow-1: hsl(35deg, 77%, 44%); + --yellow-2: hsl(35deg, 77%, 49%); + --yellow-3: hsl(35deg, 77%, 49%); + --yellow-4: hsl(35deg, 77%, 54%); + --yellow-5: hsl(35deg, 77%, 59%); + + --purple-1: hsl(266deg, 85%, 53%); + --purple-2: hsl(266deg, 85%, 58%); + --purple-3: hsl(266deg, 85%, 58%); + --purple-4: hsl(266deg, 85%, 63%); + --purple-5: hsl(266deg, 85%, 68%); +} diff --git a/theme/flavors/system24-gruvbox.theme.css b/theme/flavors/system24-gruvbox.theme.css new file mode 100644 index 0000000..d31b9d8 --- /dev/null +++ b/theme/flavors/system24-gruvbox.theme.css @@ -0,0 +1,161 @@ +/** + * @name system24 (gruvbox material) + * @description a tui-like discord theme. based on gruvbox material theme. + * @author refact0r + * @version 2.0.0 + * @invite nz87hXyvcy + * @website https://github.com/refact0r/system24 + * @source https://github.com/refact0r/system24/blob/master/theme/system24-gruvbox.theme.css + * @authorId 508863359777505290 + * @authorLink https://www.refact0r.dev +*/ + +/* import theme modules */ +@import url('https://refact0r.github.io/system24/build/system24.css'); + +body { + /* font, change to '' for default discord font */ + --font: 'DM Mono'; /* change to '' for default discord font */ + --code-font: 'DM Mono'; /* change to '' for default discord font */ + font-weight: 300; /* text font weight. 300 is light, 400 is normal. DOES NOT AFFECT BOLD TEXT */ + letter-spacing: -0.05ch; /* decreases letter spacing for better readability. recommended on monospace fonts.*/ + + /* sizes */ + --gap: 12px; /* spacing between panels */ + --divider-thickness: 4px; /* thickness of unread messages divider and highlighted message borders */ + --border-thickness: 2px; /* thickness of borders around main panels. DOES NOT AFFECT OTHER BORDERS */ + --border-hover-transition: 0.2s ease; /* transition for borders when hovered */ + + /* animation/transition options */ + --animations: on; /* off: disable animations/transitions, on: enable animations/transitions */ + --list-item-transition: 0.2s ease; /* transition for list items */ + --dms-icon-svg-transition: 0.4s ease; /* transition for the dms icon */ + + /* top bar options */ + --top-bar-height: var(--gap); /* height of the top bar (discord default is 36px, old discord style is 24px, var(--gap) recommended if button position is set to titlebar) */ + --top-bar-button-position: titlebar; /* off: default position, hide: hide buttons completely, serverlist: move inbox button to server list, titlebar: move inbox button to channel titlebar (will hide title) */ + --top-bar-title-position: off; /* off: default centered position, hide: hide title completely, left: left align title (like old discord) */ + --subtle-top-bar-title: off; /* off: default, on: hide the icon and use subtle text color (like old discord) */ + + /* window controls */ + --custom-window-controls: off; /* off: default window controls, on: custom window controls */ + --window-control-size: 14px; /* size of custom window controls */ + + /* dms button options */ + --custom-dms-icon: off; /* off: use default discord icon, hide: remove icon entirely, custom: use custom icon */ + --dms-icon-svg-url: url(''); /* icon svg url. MUST BE A SVG. */ + --dms-icon-svg-size: 90%; /* size of the svg (css mask-size property) */ + --dms-icon-color-before: var(--icon-secondary); /* normal icon color */ + --dms-icon-color-after: var(--white); /* icon color when button is hovered/selected */ + --custom-dms-background: off; /* off to disable, image to use a background image (must set url variable below), color to use a custom color/gradient */ + --dms-background-image-url: url(''); /* url of the background image */ + --dms-background-image-size: cover; /* size of the background image (css background-size property) */ + --dms-background-color: linear-gradient(70deg, var(--blue-2), var(--purple-2), var(--red-2)); /* fixed color/gradient (css background property) */ + + /* background image options */ + --background-image: off; /* off: no background image, on: enable background image (must set url variable below) */ + --background-image-url: url(''); /* url of the background image */ + + /* transparency/blur options */ + /* NOTE: TO USE TRANSPARENCY/BLUR, YOU MUST HAVE TRANSPARENT BG COLORS. FOR EXAMPLE: --bg-4: hsla(220, 15%, 10%, 0.7); */ + --transparency-tweaks: off; /* off: no changes, on: remove some elements for better transparency */ + --remove-bg-layer: off; /* off: no changes, on: remove the base --bg-3 layer for use with window transparency (WILL OVERRIDE BACKGROUND IMAGE) */ + --panel-blur: off; /* off: no changes, on: blur the background of panels */ + --blur-amount: 12px; /* amount of blur */ + --bg-floating: var(--bg-3); /* set this to a more opaque color if floating panels look too transparent. only applies if panel blur is on */ + + /* other options */ + --small-user-panel: on; /* off: default user panel, on: smaller user panel like in old discord */ + + /* unrounding options */ + --unrounding: on; /* off: default, on: remove rounded corners from panels */ + + /* styling options */ + --custom-spotify-bar: on; /* off: default, on: custom text-like spotify progress bar */ + --ascii-titles: on; /* off: default, on: use ascii font for titles at the start of a channel */ + --ascii-loader: system24; /* off: default, system24: use system24 ascii loader, cats: use cats loader */ + + /* panel labels */ + --panel-labels: on; /* off: default, on: add labels to panels */ + --label-color: var(--text-muted); /* color of labels */ + --label-font-weight: 500; /* font weight of labels */ +} + +/* color options */ +:root { + --colors: on; /* off: discord default colors, on: custom colors */ + + /* text colors */ + --text-0: var(--bg-4); /* text on colored elements */ + --text-1: #ebdbb2; /* other normally white text */ + --text-2: #d4be98; /* headings and important text */ + --text-3: #a89984; /* normal text */ + --text-4: #7c6f64; /* icon buttons and channels */ + --text-5: #665c54; /* muted channels/chats and timestamps */ + + /* background and dark colors */ + --bg-1: #504945; /* dark buttons when clicked */ + --bg-2: #3c3836; /* dark buttons */ + --bg-3: #32302f; /* spacing, secondary elements */ + --bg-4: #282828; /* main background color */ + --hover: rgba(168, 153, 132, 0.1); /* channels and buttons when hovered */ + --active: rgba(168, 153, 132, 0.2); /* channels and buttons when clicked or selected */ + --active-2: rgba(168, 153, 132, 0.3); /* extra state for transparent buttons */ + --message-hover: rgba(168, 153, 132, 0.05); /* messages when hovered */ + + /* accent colors */ + --accent-1: #fabd2f; /* links and other accent text */ + --accent-2: #d8a657; /* small accent elements */ + --accent-3: #d79921; /* accent buttons */ + --accent-4: #b8bb26; /* accent buttons when hovered */ + --accent-5: #98971a; /* accent buttons when clicked */ + --accent-new: var(--red-2); /* stuff that's normally red like mute/deafen buttons */ + --mention: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 90%) 40%, transparent); /* background of messages that mention you */ + --mention-hover: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 95%) 40%, transparent); /* background of messages that mention you when hovered */ + --reply: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 90%) 40%, transparent); /* background of messages that reply to you */ + --reply-hover: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 95%) 40%, transparent); /* background of messages that reply to you when hovered */ + + /* status indicator colors */ + --online: var(--green-2); /* change to #43a25a for default */ + --dnd: var(--red-2); /* change to #d83a42 for default */ + --idle: var(--yellow-2); /* change to #ca9654 for default */ + --streaming: var(--purple-2); /* change to #593695 for default */ + --offline: var(--text-4); /* change to #83838b for default offline color */ + + /* border colors */ + --border-light: var(--hover); /* general light border color */ + --border: var(--active); /* general normal border color */ + --border-hover: var(--accent-2); /* border color of panels when hovered */ + --button-border: rgba(168, 153, 132, 0.2); /* neutral border color of buttons */ + + /* base colors - gruvbox material */ + --red-1: #fb4934; + --red-2: #ea6962; + --red-3: #cc241d; + --red-4: #9d0006; + --red-5: #7c0a02; + + --green-1: #b8bb26; + --green-2: #a9b665; + --green-3: #98971a; + --green-4: #79740e; + --green-5: #5a5a0a; + + --blue-1: #83a598; + --blue-2: #7daea3; + --blue-3: #458588; + --blue-4: #076678; + --blue-5: #0e4c5a; + + --yellow-1: #fabd2f; + --yellow-2: #d8a657; + --yellow-3: #d79921; + --yellow-4: #b57614; + --yellow-5: #8f5902; + + --purple-1: #d3869b; + --purple-2: #d3869b; + --purple-3: #b16286; + --purple-4: #8f3f71; + --purple-5: #6d2c5a; +} diff --git a/theme/flavors/system24-kanagawa.theme.css b/theme/flavors/system24-kanagawa.theme.css new file mode 100644 index 0000000..c3b2c72 --- /dev/null +++ b/theme/flavors/system24-kanagawa.theme.css @@ -0,0 +1,161 @@ +/** + * @name system24 (kanagawa) + * @description a tui-like discord theme. based on kanagawa theme. + * @author refact0r + * @version 2.0.0 + * @invite nz87hXyvcy + * @website https://github.com/refact0r/system24 + * @source https://github.com/refact0r/system24/blob/master/theme/system24-kanagawa.theme.css + * @authorId 508863359777505290 + * @authorLink https://www.refact0r.dev +*/ + +/* import theme modules */ +@import url('https://refact0r.github.io/system24/build/system24.css'); + +body { + /* font, change to '' for default discord font */ + --font: 'DM Mono'; /* change to '' for default discord font */ + --code-font: 'DM Mono'; /* change to '' for default discord font */ + font-weight: 300; /* text font weight. 300 is light, 400 is normal. DOES NOT AFFECT BOLD TEXT */ + letter-spacing: -0.05ch; /* decreases letter spacing for better readability. recommended on monospace fonts.*/ + + /* sizes */ + --gap: 12px; /* spacing between panels */ + --divider-thickness: 4px; /* thickness of unread messages divider and highlighted message borders */ + --border-thickness: 2px; /* thickness of borders around main panels. DOES NOT AFFECT OTHER BORDERS */ + --border-hover-transition: 0.2s ease; /* transition for borders when hovered */ + + /* animation/transition options */ + --animations: on; /* off: disable animations/transitions, on: enable animations/transitions */ + --list-item-transition: 0.2s ease; /* transition for list items */ + --dms-icon-svg-transition: 0.4s ease; /* transition for the dms icon */ + + /* top bar options */ + --top-bar-height: var(--gap); /* height of the top bar (discord default is 36px, old discord style is 24px, var(--gap) recommended if button position is set to titlebar) */ + --top-bar-button-position: titlebar; /* off: default position, hide: hide buttons completely, serverlist: move inbox button to server list, titlebar: move inbox button to channel titlebar (will hide title) */ + --top-bar-title-position: off; /* off: default centered position, hide: hide title completely, left: left align title (like old discord) */ + --subtle-top-bar-title: off; /* off: default, on: hide the icon and use subtle text color (like old discord) */ + + /* window controls */ + --custom-window-controls: off; /* off: default window controls, on: custom window controls */ + --window-control-size: 14px; /* size of custom window controls */ + + /* dms button options */ + --custom-dms-icon: off; /* off: use default discord icon, hide: remove icon entirely, custom: use custom icon */ + --dms-icon-svg-url: url(''); /* icon svg url. MUST BE A SVG. */ + --dms-icon-svg-size: 90%; /* size of the svg (css mask-size property) */ + --dms-icon-color-before: var(--icon-secondary); /* normal icon color */ + --dms-icon-color-after: var(--white); /* icon color when button is hovered/selected */ + --custom-dms-background: off; /* off to disable, image to use a background image (must set url variable below), color to use a custom color/gradient */ + --dms-background-image-url: url(''); /* url of the background image */ + --dms-background-image-size: cover; /* size of the background image (css background-size property) */ + --dms-background-color: linear-gradient(70deg, var(--blue-2), var(--purple-2), var(--red-2)); /* fixed color/gradient (css background property) */ + + /* background image options */ + --background-image: off; /* off: no background image, on: enable background image (must set url variable below) */ + --background-image-url: url(''); /* url of the background image */ + + /* transparency/blur options */ + /* NOTE: TO USE TRANSPARENCY/BLUR, YOU MUST HAVE TRANSPARENT BG COLORS. FOR EXAMPLE: --bg-4: hsla(220, 15%, 10%, 0.7); */ + --transparency-tweaks: off; /* off: no changes, on: remove some elements for better transparency */ + --remove-bg-layer: off; /* off: no changes, on: remove the base --bg-3 layer for use with window transparency (WILL OVERRIDE BACKGROUND IMAGE) */ + --panel-blur: off; /* off: no changes, on: blur the background of panels */ + --blur-amount: 12px; /* amount of blur */ + --bg-floating: var(--bg-3); /* set this to a more opaque color if floating panels look too transparent. only applies if panel blur is on */ + + /* other options */ + --small-user-panel: on; /* off: default user panel, on: smaller user panel like in old discord */ + + /* unrounding options */ + --unrounding: on; /* off: default, on: remove rounded corners from panels */ + + /* styling options */ + --custom-spotify-bar: on; /* off: default, on: custom text-like spotify progress bar */ + --ascii-titles: on; /* off: default, on: use ascii font for titles at the start of a channel */ + --ascii-loader: system24; /* off: default, system24: use system24 ascii loader, cats: use cats loader */ + + /* panel labels */ + --panel-labels: on; /* off: default, on: add labels to panels */ + --label-color: var(--text-muted); /* color of labels */ + --label-font-weight: 500; /* font weight of labels */ +} + +/* color options */ +:root { + --colors: on; /* off: discord default colors, on: custom colors */ + + /* text colors */ + --text-0: var(--bg-4); /* text on colored elements */ + --text-1: #dcd7ba; /* other normally white text */ + --text-2: #c8c093; /* headings and important text */ + --text-3: #938056; /* normal text */ + --text-4: #727169; /* icon buttons and channels */ + --text-5: #54546d; /* muted channels/chats and timestamps */ + + /* background and dark colors */ + --bg-1: #2a2a37; /* dark buttons when clicked */ + --bg-2: #223249; /* dark buttons */ + --bg-3: #16161d; /* spacing, secondary elements */ + --bg-4: #1f1f28; /* main background color */ + --hover: rgba(220, 215, 186, 0.1); /* channels and buttons when hovered */ + --active: rgba(220, 215, 186, 0.2); /* channels and buttons when clicked or selected */ + --active-2: rgba(220, 215, 186, 0.3); /* extra state for transparent buttons */ + --message-hover: rgba(220, 215, 186, 0.05); /* messages when hovered */ + + /* accent colors */ + --accent-1: #dca561; /* links and other accent text */ + --accent-2: #c0a36e; /* small accent elements */ + --accent-3: #e6c384; /* accent buttons */ + --accent-4: #ffa066; /* accent buttons when hovered */ + --accent-5: #ff9e3b; /* accent buttons when clicked */ + --accent-new: var(--red-2); /* stuff that's normally red like mute/deafen buttons */ + --mention: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 90%) 40%, transparent); /* background of messages that mention you */ + --mention-hover: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 95%) 40%, transparent); /* background of messages that mention you when hovered */ + --reply: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 90%) 40%, transparent); /* background of messages that reply to you */ + --reply-hover: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 95%) 40%, transparent); /* background of messages that reply to you when hovered */ + + /* status indicator colors */ + --online: var(--green-2); /* change to #43a25a for default */ + --dnd: var(--red-2); /* change to #d83a42 for default */ + --idle: var(--yellow-2); /* change to #ca9654 for default */ + --streaming: var(--purple-2); /* change to #593695 for default */ + --offline: var(--text-4); /* change to #83838b for default offline color */ + + /* border colors */ + --border-light: var(--hover); /* general light border color */ + --border: var(--active); /* general normal border color */ + --border-hover: var(--accent-2); /* border color of panels when hovered */ + --button-border: rgba(220, 215, 186, 0.2); /* neutral border color of buttons */ + + /* base colors - kanagawa */ + --red-1: #ff5d62; + --red-2: #e82424; + --red-3: #c34043; + --red-4: #a53e3e; + --red-5: #8b3434; + + --green-1: #98bb6c; + --green-2: #76946a; + --green-3: #658594; + --green-4: #54796a; + --green-5: #446356; + + --blue-1: #7fb4ca; + --blue-2: #7e9cd8; + --blue-3: #6a9589; + --blue-4: #5a7a89; + --blue-5: #4a6478; + + --yellow-1: #e6c384; + --yellow-2: #c0a36e; + --yellow-3: #dca561; + --yellow-4: #b8935a; + --yellow-5: #9a7b4a; + + --purple-1: #9cabca; + --purple-2: #957fb8; + --purple-3: #938aa9; + --purple-4: #7a7199; + --purple-5: #615d89; +} diff --git a/theme/flavors/system24-matte-black.theme.css b/theme/flavors/system24-matte-black.theme.css new file mode 100644 index 0000000..069fbda --- /dev/null +++ b/theme/flavors/system24-matte-black.theme.css @@ -0,0 +1,161 @@ +/** + * @name system24 (matte black) + * @description a tui-like discord theme. based on omarchy matte black theme. + * @author refact0r + * @version 2.0.0 + * @invite nz87hXyvcy + * @website https://github.com/refact0r/system24 + * @source https://github.com/refact0r/system24/blob/master/theme/system24-matte-black.theme.css + * @authorId 508863359777505290 + * @authorLink https://www.refact0r.dev +*/ + +/* import theme modules */ +@import url('https://refact0r.github.io/system24/build/system24.css'); + +body { + /* font, change to '' for default discord font */ + --font: 'DM Mono'; /* change to '' for default discord font */ + --code-font: 'DM Mono'; /* change to '' for default discord font */ + font-weight: 300; /* text font weight. 300 is light, 400 is normal. DOES NOT AFFECT BOLD TEXT */ + letter-spacing: -0.05ch; /* decreases letter spacing for better readability. recommended on monospace fonts.*/ + + /* sizes */ + --gap: 12px; /* spacing between panels */ + --divider-thickness: 4px; /* thickness of unread messages divider and highlighted message borders */ + --border-thickness: 2px; /* thickness of borders around main panels. DOES NOT AFFECT OTHER BORDERS */ + --border-hover-transition: 0.2s ease; /* transition for borders when hovered */ + + /* animation/transition options */ + --animations: on; /* off: disable animations/transitions, on: enable animations/transitions */ + --list-item-transition: 0.2s ease; /* transition for list items */ + --dms-icon-svg-transition: 0.4s ease; /* transition for the dms icon */ + + /* top bar options */ + --top-bar-height: var(--gap); /* height of the top bar (discord default is 36px, old discord style is 24px, var(--gap) recommended if button position is set to titlebar) */ + --top-bar-button-position: titlebar; /* off: default position, hide: hide buttons completely, serverlist: move inbox button to server list, titlebar: move inbox button to channel titlebar (will hide title) */ + --top-bar-title-position: off; /* off: default centered position, hide: hide title completely, left: left align title (like old discord) */ + --subtle-top-bar-title: off; /* off: default, on: hide the icon and use subtle text color (like old discord) */ + + /* window controls */ + --custom-window-controls: off; /* off: default window controls, on: custom window controls */ + --window-control-size: 14px; /* size of custom window controls */ + + /* dms button options */ + --custom-dms-icon: off; /* off: use default discord icon, hide: remove icon entirely, custom: use custom icon */ + --dms-icon-svg-url: url(''); /* icon svg url. MUST BE A SVG. */ + --dms-icon-svg-size: 90%; /* size of the svg (css mask-size property) */ + --dms-icon-color-before: var(--icon-secondary); /* normal icon color */ + --dms-icon-color-after: var(--white); /* icon color when button is hovered/selected */ + --custom-dms-background: off; /* off to disable, image to use a background image (must set url variable below), color to use a custom color/gradient */ + --dms-background-image-url: url(''); /* url of the background image */ + --dms-background-image-size: cover; /* size of the background image (css background-size property) */ + --dms-background-color: linear-gradient(70deg, var(--blue-2), var(--purple-2), var(--red-2)); /* fixed color/gradient (css background property) */ + + /* background image options */ + --background-image: off; /* off: no background image, on: enable background image (must set url variable below) */ + --background-image-url: url(''); /* url of the background image */ + + /* transparency/blur options */ + /* NOTE: TO USE TRANSPARENCY/BLUR, YOU MUST HAVE TRANSPARENT BG COLORS. FOR EXAMPLE: --bg-4: hsla(220, 15%, 10%, 0.7); */ + --transparency-tweaks: off; /* off: no changes, on: remove some elements for better transparency */ + --remove-bg-layer: off; /* off: no changes, on: remove the base --bg-3 layer for use with window transparency (WILL OVERRIDE BACKGROUND IMAGE) */ + --panel-blur: off; /* off: no changes, on: blur the background of panels */ + --blur-amount: 12px; /* amount of blur */ + --bg-floating: var(--bg-3); /* set this to a more opaque color if floating panels look too transparent. only applies if panel blur is on */ + + /* other options */ + --small-user-panel: on; /* off: default user panel, on: smaller user panel like in old discord */ + + /* unrounding options */ + --unrounding: on; /* off: default, on: remove rounded corners from panels */ + + /* styling options */ + --custom-spotify-bar: on; /* off: default, on: custom text-like spotify progress bar */ + --ascii-titles: on; /* off: default, on: use ascii font for titles at the start of a channel */ + --ascii-loader: system24; /* off: default, system24: use system24 ascii loader, cats: use cats loader */ + + /* panel labels */ + --panel-labels: on; /* off: default, on: add labels to panels */ + --label-color: var(--text-muted); /* color of labels */ + --label-font-weight: 500; /* font weight of labels */ +} + +/* color options */ +:root { + --colors: on; /* off: discord default colors, on: midnight custom colors */ + + /* text colors */ + --text-0: var(--bg-4); /* text on colored elements */ + --text-1: #ffffff; /* other normally white text */ + --text-2: #eaeaea; /* headings and important text */ + --text-3: #bebebe; /* normal text */ + --text-4: #8a8a8d; /* icon buttons and channels */ + --text-5: #333333; /* muted channels/chats and timestamps */ + + /* background and dark colors */ + --bg-1: #333333; /* dark buttons when clicked */ + --bg-2: #1e1e1e; /* dark buttons */ + --bg-3: #161616; /* spacing, secondary elements */ + --bg-4: #121212; /* main background color */ + --hover: rgba(138, 138, 141, 0.1); /* channels and buttons when hovered */ + --active: rgba(138, 138, 141, 0.2); /* channels and buttons when clicked or selected */ + --active-2: rgba(138, 138, 141, 0.3); /* extra state for transparent buttons */ + --message-hover: rgba(138, 138, 141, 0.05); /* messages when hovered */ + + /* accent colors */ + --accent-1: #f59e0b; /* links and other accent text */ + --accent-2: #ffc107; /* small accent elements */ + --accent-3: #ffc107; /* accent buttons */ + --accent-4: #f59e0b; /* accent buttons when hovered */ + --accent-5: #b91c1c; /* accent buttons when clicked */ + --accent-new: var(--red-2); /* stuff that's normally red like mute/deafen buttons */ + --mention: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 90%) 40%, transparent); /* background of messages that mention you */ + --mention-hover: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 95%) 40%, transparent); /* background of messages that mention you when hovered */ + --reply: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 90%) 40%, transparent); /* background of messages that reply to you */ + --reply-hover: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 95%) 40%, transparent); /* background of messages that reply to you when hovered */ + + /* status indicator colors */ + --online: #ffc107; /* change to #40a258 for default */ + --dnd: #b91c1c; /* change to #d83a41 for default */ + --idle: #f59e0b; /* change to #cc954c for default */ + --streaming: #f59e0b; /* change to ##9147ff for default */ + --offline: var(--text-4); /* change to #82838b for default offline color */ + + /* border colors */ + --border-light: var(--hover); /* general light border color */ + --border: var(--active); /* general normal border color */ + --border-hover: #eaeaea; /* border color of panels when hovered */ + --button-border: rgba(234, 234, 234, 0.2); /* neutral border color of buttons */ + + /* base colors - omarchy matte black */ + --red-1: #d35f5f; + --red-2: #b91c1c; + --red-3: #b90a0a; + --red-4: #9a1818; + --red-5: #7d1414; + + --green-1: #ffc107; + --green-2: #ffc107; + --green-3: #e6a500; + --green-4: #cc9400; + --green-5: #b38300; + + --blue-1: #f59e0b; + --blue-2: #e68e0d; + --blue-3: #d17e0b; + --blue-4: #bd6e09; + --blue-5: #a85e07; + + --yellow-1: #ffc107; + --yellow-2: #f59e0b; + --yellow-3: #e68e0d; + --yellow-4: #d17e0b; + --yellow-5: #bd6e09; + + --purple-1: #8a8a8d; + --purple-2: #8a8a8d; + --purple-3: #757578; + --purple-4: #606063; + --purple-5: #4b4b4e; +} diff --git a/theme/flavors/system24-osaka-jade.theme.css b/theme/flavors/system24-osaka-jade.theme.css new file mode 100644 index 0000000..3f3c403 --- /dev/null +++ b/theme/flavors/system24-osaka-jade.theme.css @@ -0,0 +1,161 @@ +/** + * @name system24 (osaka jade) + * @description a tui-like discord theme. based on osaka jade theme. + * @author refact0r + * @version 2.0.0 + * @invite nz87hXyvcy + * @website https://github.com/refact0r/system24 + * @source https://github.com/refact0r/system24/blob/master/theme/system24-osaka-jade.theme.css + * @authorId 508863359777505290 + * @authorLink https://www.refact0r.dev +*/ + +/* import theme modules */ +@import url('https://refact0r.github.io/system24/build/system24.css'); + +body { + /* font, change to '' for default discord font */ + --font: 'DM Mono'; /* change to '' for default discord font */ + --code-font: 'DM Mono'; /* change to '' for default discord font */ + font-weight: 300; /* text font weight. 300 is light, 400 is normal. DOES NOT AFFECT BOLD TEXT */ + letter-spacing: -0.05ch; /* decreases letter spacing for better readability. recommended on monospace fonts.*/ + + /* sizes */ + --gap: 12px; /* spacing between panels */ + --divider-thickness: 4px; /* thickness of unread messages divider and highlighted message borders */ + --border-thickness: 2px; /* thickness of borders around main panels. DOES NOT AFFECT OTHER BORDERS */ + --border-hover-transition: 0.2s ease; /* transition for borders when hovered */ + + /* animation/transition options */ + --animations: on; /* off: disable animations/transitions, on: enable animations/transitions */ + --list-item-transition: 0.2s ease; /* transition for list items */ + --dms-icon-svg-transition: 0.4s ease; /* transition for the dms icon */ + + /* top bar options */ + --top-bar-height: var(--gap); /* height of the top bar (discord default is 36px, old discord style is 24px, var(--gap) recommended if button position is set to titlebar) */ + --top-bar-button-position: titlebar; /* off: default position, hide: hide buttons completely, serverlist: move inbox button to server list, titlebar: move inbox button to channel titlebar (will hide title) */ + --top-bar-title-position: off; /* off: default centered position, hide: hide title completely, left: left align title (like old discord) */ + --subtle-top-bar-title: off; /* off: default, on: hide the icon and use subtle text color (like old discord) */ + + /* window controls */ + --custom-window-controls: off; /* off: default window controls, on: custom window controls */ + --window-control-size: 14px; /* size of custom window controls */ + + /* dms button options */ + --custom-dms-icon: off; /* off: use default discord icon, hide: remove icon entirely, custom: use custom icon */ + --dms-icon-svg-url: url(''); /* icon svg url. MUST BE A SVG. */ + --dms-icon-svg-size: 90%; /* size of the svg (css mask-size property) */ + --dms-icon-color-before: var(--icon-secondary); /* normal icon color */ + --dms-icon-color-after: var(--white); /* icon color when button is hovered/selected */ + --custom-dms-background: off; /* off to disable, image to use a background image (must set url variable below), color to use a custom color/gradient */ + --dms-background-image-url: url(''); /* url of the background image */ + --dms-background-image-size: cover; /* size of the background image (css background-size property) */ + --dms-background-color: linear-gradient(70deg, var(--blue-2), var(--purple-2), var(--red-2)); /* fixed color/gradient (css background property) */ + + /* background image options */ + --background-image: off; /* off: no background image, on: enable background image (must set url variable below) */ + --background-image-url: url(''); /* url of the background image */ + + /* transparency/blur options */ + /* NOTE: TO USE TRANSPARENCY/BLUR, YOU MUST HAVE TRANSPARENT BG COLORS. FOR EXAMPLE: --bg-4: hsla(220, 15%, 10%, 0.7); */ + --transparency-tweaks: off; /* off: no changes, on: remove some elements for better transparency */ + --remove-bg-layer: off; /* off: no changes, on: remove the base --bg-3 layer for use with window transparency (WILL OVERRIDE BACKGROUND IMAGE) */ + --panel-blur: off; /* off: no changes, on: blur the background of panels */ + --blur-amount: 12px; /* amount of blur */ + --bg-floating: var(--bg-3); /* set this to a more opaque color if floating panels look too transparent. only applies if panel blur is on */ + + /* other options */ + --small-user-panel: on; /* off: default user panel, on: smaller user panel like in old discord */ + + /* unrounding options */ + --unrounding: on; /* off: default, on: remove rounded corners from panels */ + + /* styling options */ + --custom-spotify-bar: on; /* off: default, on: custom text-like spotify progress bar */ + --ascii-titles: on; /* off: default, on: use ascii font for titles at the start of a channel */ + --ascii-loader: system24; /* off: default, system24: use system24 ascii loader, cats: use cats loader */ + + /* panel labels */ + --panel-labels: on; /* off: default, on: add labels to panels */ + --label-color: var(--text-muted); /* color of labels */ + --label-font-weight: 500; /* font weight of labels */ +} + +/* color options */ +:root { + --colors: on; /* off: discord default colors, on: custom colors */ + + /* text colors */ + --text-0: var(--bg-4); /* text on colored elements */ + --text-1: #ebfff2; /* other normally white text */ + --text-2: #f6f5dd; /* headings and important text */ + --text-3: #c1c497; /* normal text */ + --text-4: #81b8a8; /* icon buttons and channels */ + --text-5: #53685b; /* muted channels/chats and timestamps */ + + /* background and dark colors */ + --bg-1: #364538; /* dark buttons when clicked */ + --bg-2: #23372b; /* dark buttons */ + --bg-3: #11221c; /* spacing, secondary elements */ + --bg-4: #111c18; /* main background color */ + --hover: rgba(193, 196, 151, 0.1); /* channels and buttons when hovered */ + --active: rgba(193, 196, 151, 0.2); /* channels and buttons when clicked or selected */ + --active-2: rgba(193, 196, 151, 0.3); /* extra state for transparent buttons */ + --message-hover: rgba(193, 196, 151, 0.05); /* messages when hovered */ + + /* accent colors */ + --accent-1: #e1b55e; /* links and other accent text */ + --accent-2: #71cead; /* small accent elements */ + --accent-3: #deb266; /* accent buttons */ + --accent-4: #e5c736; /* accent buttons when hovered */ + --accent-5: #bfd99a; /* accent buttons when clicked */ + --accent-new: var(--red-2); /* stuff that's normally red like mute/deafen buttons */ + --mention: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 90%) 40%, transparent); /* background of messages that mention you */ + --mention-hover: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 95%) 40%, transparent); /* background of messages that mention you when hovered */ + --reply: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 90%) 40%, transparent); /* background of messages that reply to you */ + --reply-hover: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 95%) 40%, transparent); /* background of messages that reply to you when hovered */ + + /* status indicator colors */ + --online: var(--green-2); /* change to #43a25a for default */ + --dnd: var(--red-2); /* change to #d83a42 for default */ + --idle: var(--yellow-2); /* change to #ca9654 for default */ + --streaming: var(--purple-2); /* change to #593695 for default */ + --offline: var(--text-4); /* change to #83838b for default offline color */ + + /* border colors */ + --border-light: var(--hover); /* general light border color */ + --border: var(--active); /* general normal border color */ + --border-hover: var(--accent-2); /* border color of panels when hovered */ + --button-border: rgba(193, 196, 151, 0.2); /* neutral border color of buttons */ + + /* base colors - osaka jade */ + --red-1: #db9f9c; + --red-2: #ff5345; + --red-3: #e67d64; + --red-4: #cc6b58; + --red-5: #b5594c; + + --green-1: #9eebb3; + --green-2: #549e6a; + --green-3: #459451; + --green-4: #3a8043; + --green-5: #2f6c35; + + --blue-1: #8cd3cb; + --blue-2: #509475; + --blue-3: #2dd5b7; + --blue-4: #25b99e; + --blue-5: #1e9d85; + + --yellow-1: #e5c736; + --yellow-2: #deb266; + --yellow-3: #e1b55e; + --yellow-4: #d4a552; + --yellow-5: #c79546; + + --purple-1: #75bbb3; + --purple-2: #d2689c; + --purple-3: #acd4cf; + --purple-4: #98c0bb; + --purple-5: #84aca7; +} diff --git a/theme/flavors/system24-ristretto.theme.css b/theme/flavors/system24-ristretto.theme.css new file mode 100644 index 0000000..1c5102c --- /dev/null +++ b/theme/flavors/system24-ristretto.theme.css @@ -0,0 +1,161 @@ +/** + * @name system24 (ristretto) + * @description a tui-like discord theme. based on ristretto theme. + * @author refact0r + * @version 2.0.0 + * @invite nz87hXyvcy + * @website https://github.com/refact0r/system24 + * @source https://github.com/refact0r/system24/blob/master/theme/system24-ristretto.theme.css + * @authorId 508863359777505290 + * @authorLink https://www.refact0r.dev +*/ + +/* import theme modules */ +@import url('https://refact0r.github.io/system24/build/system24.css'); + +body { + /* font, change to '' for default discord font */ + --font: 'DM Mono'; /* change to '' for default discord font */ + --code-font: 'DM Mono'; /* change to '' for default discord font */ + font-weight: 300; /* text font weight. 300 is light, 400 is normal. DOES NOT AFFECT BOLD TEXT */ + letter-spacing: -0.05ch; /* decreases letter spacing for better readability. recommended on monospace fonts.*/ + + /* sizes */ + --gap: 12px; /* spacing between panels */ + --divider-thickness: 4px; /* thickness of unread messages divider and highlighted message borders */ + --border-thickness: 2px; /* thickness of borders around main panels. DOES NOT AFFECT OTHER BORDERS */ + --border-hover-transition: 0.2s ease; /* transition for borders when hovered */ + + /* animation/transition options */ + --animations: on; /* off: disable animations/transitions, on: enable animations/transitions */ + --list-item-transition: 0.2s ease; /* transition for list items */ + --dms-icon-svg-transition: 0.4s ease; /* transition for the dms icon */ + + /* top bar options */ + --top-bar-height: var(--gap); /* height of the top bar (discord default is 36px, old discord style is 24px, var(--gap) recommended if button position is set to titlebar) */ + --top-bar-button-position: titlebar; /* off: default position, hide: hide buttons completely, serverlist: move inbox button to server list, titlebar: move inbox button to channel titlebar (will hide title) */ + --top-bar-title-position: off; /* off: default centered position, hide: hide title completely, left: left align title (like old discord) */ + --subtle-top-bar-title: off; /* off: default, on: hide the icon and use subtle text color (like old discord) */ + + /* window controls */ + --custom-window-controls: off; /* off: default window controls, on: custom window controls */ + --window-control-size: 14px; /* size of custom window controls */ + + /* dms button options */ + --custom-dms-icon: off; /* off: use default discord icon, hide: remove icon entirely, custom: use custom icon */ + --dms-icon-svg-url: url(''); /* icon svg url. MUST BE A SVG. */ + --dms-icon-svg-size: 90%; /* size of the svg (css mask-size property) */ + --dms-icon-color-before: var(--icon-secondary); /* normal icon color */ + --dms-icon-color-after: var(--white); /* icon color when button is hovered/selected */ + --custom-dms-background: off; /* off to disable, image to use a background image (must set url variable below), color to use a custom color/gradient */ + --dms-background-image-url: url(''); /* url of the background image */ + --dms-background-image-size: cover; /* size of the background image (css background-size property) */ + --dms-background-color: linear-gradient(70deg, var(--blue-2), var(--purple-2), var(--red-2)); /* fixed color/gradient (css background property) */ + + /* background image options */ + --background-image: off; /* off: no background image, on: enable background image (must set url variable below) */ + --background-image-url: url(''); /* url of the background image */ + + /* transparency/blur options */ + /* NOTE: TO USE TRANSPARENCY/BLUR, YOU MUST HAVE TRANSPARENT BG COLORS. FOR EXAMPLE: --bg-4: hsla(220, 15%, 10%, 0.7); */ + --transparency-tweaks: off; /* off: no changes, on: remove some elements for better transparency */ + --remove-bg-layer: off; /* off: no changes, on: remove the base --bg-3 layer for use with window transparency (WILL OVERRIDE BACKGROUND IMAGE) */ + --panel-blur: off; /* off: no changes, on: blur the background of panels */ + --blur-amount: 12px; /* amount of blur */ + --bg-floating: var(--bg-3); /* set this to a more opaque color if floating panels look too transparent. only applies if panel blur is on */ + + /* other options */ + --small-user-panel: on; /* off: default user panel, on: smaller user panel like in old discord */ + + /* unrounding options */ + --unrounding: on; /* off: default, on: remove rounded corners from panels */ + + /* styling options */ + --custom-spotify-bar: on; /* off: default, on: custom text-like spotify progress bar */ + --ascii-titles: on; /* off: default, on: use ascii font for titles at the start of a channel */ + --ascii-loader: system24; /* off: default, system24: use system24 ascii loader, cats: use cats loader */ + + /* panel labels */ + --panel-labels: on; /* off: default, on: add labels to panels */ + --label-color: var(--text-muted); /* color of labels */ + --label-font-weight: 500; /* font weight of labels */ +} + +/* color options */ +:root { + --colors: on; /* off: discord default colors, on: custom colors */ + + /* text colors */ + --text-0: var(--bg-4); /* text on colored elements */ + --text-1: #f1e5e7; /* other normally white text */ + --text-2: #e6d9db; /* headings and important text */ + --text-3: #c3b7b8; /* normal text */ + --text-4: #948a8b; /* icon buttons and channels */ + --text-5: #72696a; /* muted channels/chats and timestamps */ + + /* background and dark colors */ + --bg-1: #403e41; /* dark buttons when clicked */ + --bg-2: #3d2f2a; /* dark buttons */ + --bg-3: #2c2421; /* spacing, secondary elements */ + --bg-4: #2c2525; /* main background color */ + --hover: rgba(230, 217, 219, 0.1); /* channels and buttons when hovered */ + --active: rgba(230, 217, 219, 0.2); /* channels and buttons when clicked or selected */ + --active-2: rgba(230, 217, 219, 0.3); /* extra state for transparent buttons */ + --message-hover: rgba(230, 217, 219, 0.05); /* messages when hovered */ + + /* accent colors */ + --accent-1: #fabd2f; /* links and other accent text */ + --accent-2: #fd6883; /* small accent elements */ + --accent-3: #f9cc6c; /* accent buttons */ + --accent-4: #fcd675; /* accent buttons when hovered */ + --accent-5: #adda78; /* accent buttons when clicked */ + --accent-new: var(--red-2); /* stuff that's normally red like mute/deafen buttons */ + --mention: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 90%) 40%, transparent); /* background of messages that mention you */ + --mention-hover: linear-gradient(to right, color-mix(in hsl, var(--accent-2), transparent 95%) 40%, transparent); /* background of messages that mention you when hovered */ + --reply: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 90%) 40%, transparent); /* background of messages that reply to you */ + --reply-hover: linear-gradient(to right, color-mix(in hsl, var(--text-3), transparent 95%) 40%, transparent); /* background of messages that reply to you when hovered */ + + /* status indicator colors */ + --online: var(--green-2); /* change to #43a25a for default */ + --dnd: var(--red-2); /* change to #d83a42 for default */ + --idle: var(--yellow-2); /* change to #ca9654 for default */ + --streaming: var(--purple-2); /* change to #593695 for default */ + --offline: var(--text-4); /* change to #83838b for default offline color */ + + /* border colors */ + --border-light: var(--hover); /* general light border color */ + --border: var(--active); /* general normal border color */ + --border-hover: var(--accent-2); /* border color of panels when hovered */ + --button-border: rgba(230, 217, 219, 0.2); /* neutral border color of buttons */ + + /* base colors - ristretto */ + --red-1: #ff8297; + --red-2: #fd6883; + --red-3: #fd6a85; + --red-4: #e85a76; + --red-5: #d34b67; + + --green-1: #c8e292; + --green-2: #adda78; + --green-3: #c5e2a3; + --green-4: #9cc76a; + --green-5: #8bb45c; + + --blue-1: #f8a788; + --blue-2: #f38d70; + --blue-3: #85dacc; + --blue-4: #eb7e62; + --blue-5: #e36f54; + + --yellow-1: #fcd675; + --yellow-2: #f9cc6c; + --yellow-3: #fce2a3; + --yellow-4: #f7c35e; + --yellow-5: #f5ba50; + + --purple-1: #bebffd; + --purple-2: #a8a9eb; + --purple-3: #c5c6f0; + --purple-4: #9a9bdf; + --purple-5: #8c8dd3; +}