Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update moon colours [MDS-814] #2501

Merged
merged 2 commits into from
Nov 20, 2023
Merged
Changes from 1 commit
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
34 changes: 17 additions & 17 deletions workspaces/themes/src/moon.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
:root.theme-moon-light,
.theme-moon-light {
--piccolo: 78 70 180; /* #4e46b4 */
--hit: 64 166 159; /* #40a69f */
--beerus: 226 226 226; /* #e2e2e2 */
--gohan: 245 245 245; /* #f5f5f5 */
--piccolo: 92 51 207; /* #5c33cf */
--hit: 27 210 154; /* #1bd29a */
--beerus: 220 222 227; /* #dcdee3 */
--gohan: 246 247 249; /* #f6f7f9 */
--goten: 255 255 255; /* #ffffff */
--goku: 255 255 255; /* #ffffff */
--bulma: 0 0 0; /* #000000 */
--trunks: 89 93 98; /* #595D62 */
--trunks: 104 112 131; /* #687083 */
--popo: 0 0 0; /* #000000 */
--jiren: 78 70 180 / 0.12; /* #4e46b4 */
--jiren: 92 51 201 / 0.12; /* #5c33cf */
--heles: 0 0 0 / 0.04; /* #000000 */
--zeno: 0 0 0 / 0.56; /* #000000 */

Expand All @@ -22,9 +22,9 @@
--chichi-60: 255 78 100 / 0.56; /* #ff4e64 */
--chichi-10: 255 78 100 / 0.08; /* #ff4e64 */

--roshi: 46 125 50; /* #2e7d32 */
--roshi-60: 46 125 50 / 0.56; /* #2e7d32 */
--roshi-10: 46 125 50 / 0.08; /* #2e7d32 */
--roshi: 73 179 86; /* #49b356 */
--roshi-60: 73 179 86 / 0.56; /* #49b356 */
--roshi-10: 73 179 86 / 0.08; /* #49b356 */

--dodoria: 211 48 48; /* #d33030 */
--dodoria-60: 211 48 48 / 0.56; /* #d33030 */
Expand Down Expand Up @@ -81,17 +81,17 @@

:root.theme-moon-dark,
.theme-moon-dark {
--piccolo: 91 80 238; /* #5b50ee */
--hit: 64 166 159; /* #40a69f */
--piccolo: 92 51 207; /* #5c33cf */
--hit: 27 210 154; /* #1bd29a */
--beerus: 68 68 68; /* #444444 */
--gohan: 31 31 31; /* #1f1f1f */
--goten: 255 255 255; /* #ffffff */
--goku: 11 11 11; /* #0b0b0b */
--bulma: 255 255 255; /* #ffffff */
--trunks: 153 156 160; /* #999ca0 */
--trunks: 148 152 158; /* #94989e */
--popo: 0 0 0; /* #000000 */
--jiren: 91 80 238 / 0.32; /* #5b50ee */
--heles: 255 255 255 / 0.12; /* #ffffff */
--jiren: 255 255 255 / 0.12; /* #ffffff */
--heles: 255 255 255 / 0.8; /* #ffffff */
tkullisaar marked this conversation as resolved.
Show resolved Hide resolved
--zeno: 0 0 0 / 0.56; /* #000000 */

/* support-colors */
Expand All @@ -103,9 +103,9 @@
--chichi-60: 255 78 100 / 0.56; /* #ff4e64 */
--chichi-10: 255 78 100 / 0.08; /* #ff4e64 */

--roshi: 46 125 50; /* #2e7d32 */
--roshi-60: 46 125 50 / 0.56; /* #2e7d32 */
--roshi-10: 46 125 50 / 0.08; /* #2e7d32 */
--roshi: 73 179 86; /* #49b356 */
--roshi-60: 73 179 86 / 0.56; /* #49b356 */
--roshi-10: 73 179 86 / 0.08; /* #49b356 */

--dodoria: 211 48 48; /* #d33030 */
--dodoria-60: 211 48 48 / 0.56; /* #d33030 */
Expand Down
Loading