Skip to content

Commit 7278ab0

Browse files
committed
2024-05-24 - Huge update! Check description for more details
- Changed the look of the UI to look less of a visual clusterfuck - Did the "Active Now" tab in the friends list - Once again, a bunch of other things I failed to remember
1 parent 2bb8ae8 commit 7278ab0

File tree

2 files changed

+289
-177
lines changed

2 files changed

+289
-177
lines changed

PlumCherry.css

Lines changed: 23 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
/**
22
* @name PlumCherry [ALPHA]
33
* @author CerryTsuki
4-
* @version ALPHA-2024.05.21
4+
* @version ALPHA-2024.05.24
55
* @description A bright, Y2K-lite inspired theme for Discord. Set your theme to default dark!
66
*/
77

88
@import url('https://raw.githubusercontent.com/CerryTsuki/PlumCherry/main/version/current.css');
9-
109
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap');
1110

1211
/* these are CSS variables, and as such use CSS values. if something's broken, make sure you don't have any typos in your values. */
1312
:root {
14-
/* customizable variables */
13+
/* custom variable defaults */
1514

1615
/* fonts */
1716
--default-font: gg sans, sans-serif;
1817
--big-font: Sofia Sans Extra Condensed, sans-serif;
19-
2018
--weight-regular: 400;
2119
--weight-bold: 800;
2220
--weight-thin: 200;
@@ -26,8 +24,11 @@
2624
--alt-color: rgb(76, 19, 109); /* preferably darker than main-color */
2725
--success-color: rgb(33, 228, 98);
2826
--danger-color: rgb(146, 12, 12);
27+
2928
--bg-color: rgba(20, 10, 25, 0.7);
3029
--bg-color-opaque: rgb(20, 10, 25);
30+
--bg-color-mention: rgba(90, 50, 20, 0.7);
31+
--bg-color-replying: rgba(90, 20, 50, 0.7);
3132

3233
--hover-color: rgb(255, 255, 255);
3334
--active-color: rgba(255, 255, 255, 1);
@@ -38,7 +39,7 @@
3839
--txt-color-grey: rgba(166, 142, 175, 1);
3940
--link-color: rgb(0, 0, 255);
4041

41-
--shadow-color: rgb(0, 0, 0);
42+
--shadow-color: rgb(0, 0, 0);
4243
--shadow-color-active: rgb(255, 255, 255);
4344

4445
/* font adjustments */
@@ -51,30 +52,32 @@
5152
--date-fontsize: 12px;
5253
--date-weight: var(--weight-bold);
5354

54-
/* do you want headers to be italicized? */
55+
/* do you want headers to be italicized?*/
5556
--cerry-italic: italic;
5657

58+
/* make this variable empty if you want fonts to be dark when on lighter backgrounds*/
59+
--override-dark-text: var(--txt-color); /* TODO may delete this if too niche */
60+
5761
/* element adjustments */
5862
/* username box in messages */
5963
--username-box-bg: var(--main-color);
6064
--username-box-shadow: var(--cerry-boxsh);
61-
--username-box-width: 700px;
62-
--username-box-txtoffset: 8px;
63-
--username-box-extendleft: 26px; /* the box is shifted a bit to the left in order to look like it comes from behind the avatar*/
65+
--username-box-extendleft: 42px; /* the box is shifted a bit to the left in order to look like it comes from behind the avatar*/
6466
--avatar-border: 3px solid var(--main-color);
65-
--avatar-size: 48px;
67+
--avatar-size: 56px;
68+
--avatar-bg: var(--main-color);
6669

6770

6871
/* animation speed for some interactions */
69-
--default-transition: 0.2s;
72+
--default-transition: 0.2s;
7073

7174

7275
/* background */
73-
--backdrop: linear-gradient(135deg, rgba(187,60,123,1) 0%, rgba(47,19,126,1) 100%);
76+
--backdrop: linear-gradient(135deg, rgba(187,60,123,1) 0%, rgba(47,19,126,1) 100%);
7477
--backdrop-position: center;
7578
--backdrop-attachment: fixed;
7679
--backdrop-repeat: repeat;
77-
--backdrop-size: ;
80+
--backdrop-size: auto;
7881
--backdrop-filter: blur(2px); /* unused for now */
7982

8083
--default-radius: 20px;
@@ -100,21 +103,13 @@
100103

101104
--dropshadow: drop-shadow(2px 2px var(--shadow-color));
102105

103-
--cerry-boxsh: 2px 2px var(--shadow-color);
104-
--cerry-boxsh-hover: 2px 2px var(--shadow-color-active);
106+
--cerry-boxsh-width: 2px;
107+
--cerry-boxsh: var(--cerry-boxsh-width) var(--cerry-boxsh-width) var(--shadow-color);
108+
--cerry-boxsh-hover: var(--cerry-boxsh-width) var(--cerry-boxsh-width) var(--shadow-color-active);
105109

106-
--cerry-border: 1px solid var(--shadow-color);
107-
--cerry-border-hover: 1px solid var(--shadow-color-active);
110+
--cerry-border-width: 1px;
111+
--cerry-border: var(--cerry-border-width) solid var(--shadow-color);
112+
--cerry-border-hover: var(--cerry-border-width) solid var(--shadow-color-active);
108113

109114
--cerry-divider: 1px solid var(--alt-color);
110-
111-
/* unused for now */
112-
--header-pos-offset:0px;
113-
114-
/* discord defaults override (changing these might break the theme)*/
115-
--background-secondary:var(--bg-color); --bg-overlay-chat:transparent;
116-
--interactive-hover: var(--hover-color); --interactive-active: var(--active-color); --interactive-normal:var(--inactive-color);
117-
--invisible : rgba(0,0,0,0);
118-
--brand-experiment:var(--main-color);
119-
--input-background:var(--bg-color);
120-
}
115+
}

0 commit comments

Comments
 (0)