Skip to content

Commit 3c66a57

Browse files
authored
Merge pull request #18 from beanOCE/main
Catppuccin Macchiato Flavor
2 parents 210dfa0 + 74c22b0 commit 3c66a57

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
/**
2+
* @name system24 (catppuccin macchiato lavender)
3+
* @description A tui-style discord theme. Based on the catppuccin maccchiato color palette.
4+
* @author refact0r
5+
* @version 1.0.0
6+
* @invite nz87hXyvcy
7+
* @website https://github.com/refact0r/system24
8+
* @source https://github.com/refact0r/system24/blob/master/flavors/catppuccin-mocha.theme.css
9+
* @authorId 508863359777505290
10+
* @authorLink https://www.refact0r.dev
11+
*/
12+
13+
/* import theme modules */
14+
@import url('https://refact0r.github.io/system24/src/main.css'); /* main theme css. DO NOT REMOVE */
15+
@import url('https://refact0r.github.io/system24/src/unrounding.css'); /* gets rid of all rounded corners. remove if you want rounded corners. */
16+
17+
/* customize things here */
18+
:root {
19+
--font: 'DM Mono'; /* UI font name. it must be installed on your system. */
20+
letter-spacing: -0.05ch; /* decreases letter spacing for better readability. */
21+
font-weight: 300; /* UI font weight. */
22+
--label-font-weight: 500; /* font weight for panel labels. */
23+
--corner-text: 'macchiato24'; /* custom text to display in the corner. only works on windows. */
24+
--pad: 16px; /* padding between panels. */
25+
--txt-pad: 10px; /* padding inside panels to prevent labels from clipping */
26+
--panel-roundness: 0px; /* corner roundness of panels. ONLY WORKS IF unrounding.css IS REMOVED (see above). */
27+
28+
/* background colors */
29+
--bg-0: #24273a; /* main background color. */
30+
--bg-1: #1e2030; /* background color for secondary elements like code blocks, embeds, etc. */
31+
--bg-2: #363a4f; /* color of neutral buttons. */
32+
--bg-3: #494d64; /* color of neutral buttons when hovered. */
33+
34+
/* state modifiers */
35+
--hover: color-mix(in oklch, var(--txt-3), transparent 80%); /* color of hovered elements. */
36+
--active: color-mix(in oklch, var(--txt-3), transparent 60%); /* color of elements when clicked. */
37+
--selected: var(--active); /* color of selected elements. */
38+
39+
/* text colors */
40+
--txt-dark: var(--bg-0); /* color of dark text on colored backgrounds. */
41+
--txt-link: var(--cyan); /* color of links. */
42+
--txt-0: #eaeefa; /* color of bright/white text. */
43+
--txt-1: #cad3f5; /* main text color. */
44+
--txt-2: #939ab7; /* color of secondary text like channel list. */
45+
--txt-3: #5b6078; /* color of muted text. */
46+
47+
/* accent colors */
48+
--acc-0: var(--lavender); /* main accent color. */
49+
--acc-1: var(--lavender-1); /* color of accent buttons when hovered. */
50+
--acc-2: var(--lavender-2); /* color of accent buttons when clicked. */
51+
52+
/* borders */
53+
--border-width: 2px; /* panel border thickness. */
54+
--border-color: var(--bg-2); /* panel border color. */
55+
--border-hover-color: var(--acc-0); /* panel border color when hovered. */
56+
--border-transition: 0.2s ease; /* panel border transition. */
57+
58+
/* status dot colors */
59+
--online-dot: var(--cyan); /* color of online dot. */
60+
--dnd-dot: var(--pink); /* color of do not disturb dot. */
61+
--idle-dot: var(--yellow); /* color of idle dot. */
62+
--streaming-dot: var(--purple); /* color of streaming dot. */
63+
64+
/* mention/ping and message colors */
65+
--mention-txt: var(--acc-0); /* color of mention text. */
66+
--mention-bg: color-mix(in oklch, var(--acc-0), transparent 90%); /* background highlight of mention text. */
67+
--mention-overlay: color-mix(in oklch, var(--acc-0), transparent 90%); /* overlay color of messages that mention you. */
68+
--mention-hover-overlay: color-mix(in oklch, var(--acc-0), transparent 95%); /* overlay color of messages that mention you when hovered. */
69+
--reply-overlay: var(--active); /* overlay color of message you are replying to. */
70+
--reply-hover-overlay: var(--hover); /* overlay color of message you are replying to when hovered. */
71+
72+
/* color shades */
73+
--pink: oklch(73.7% 0.125 11.19);
74+
--pink-1: oklch(63.7% 0.125 11.19);
75+
--pink-2: oklch(53.7% 0.125 11.19);
76+
--purple: oklch(77.15% 0.126 303.9);
77+
--purple-1: oklch(67.15% 0.126 303.9);
78+
--purple-2: oklch(57.15% 0.126 303.9);
79+
--cyan: oklch(78.51% 0.085 228.38);
80+
--yellow: oklch(87.9% 0.074 84.75);
81+
--green: oklch(83.5% 0.108 138.15);
82+
--green-1: oklch(73.5% 0.108 138.15);
83+
--green-2: oklch(63.5% 0.108 138.15);
84+
--lavender: oklch(81.66% 0.091 277.31);
85+
--lavender-1: oklch(71.66% 0.091 277.31);
86+
--lavender-2: oklch(61.66% 0.091 277.31);
87+
}

0 commit comments

Comments
 (0)