-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmocha.styl
66 lines (64 loc) · 2.88 KB
/
mocha.styl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* ==UserStyle==
@name Catppuccin Mocha Miruro
@supportURL https://github.com/crnobog69/miruro-catppuccin
@description Soothing pastel theme for Miruro
@author Crnobog
@license MIT
/* Light Mode */
:root {
--global-primary-bg: #f5f5f5;
--global-primary-bg-tr: rgba(245, 245, 245, 0.8);
--global-secondary-bg: #e0e0e0;
--global-tertiary-bg: #eaeaea;
--global-div: #e0e0e0;
--global-div-tr: rgba(224, 224, 224, 0.5);
--global-border: rgba(8, 8, 8, 0.1);
--global-text: #333;
--global-text-muted: #888;
--global-card-bg: #fff;
--global-card-title-bg: #e8e8e8;
--global-card-shadow: rgba(0, 0, 0, 0.2);
--global-primary-skeleton: rgba(165, 165, 165, 0.1);
--global-secondary-skeleton: rgba(165, 165, 165, 0.3);
--global-button-bg: #e0e0e0;
--global-button-hover-bg: #c8c8c8;
--global-button-text: #333;
--global-button-shadow: rgba(255, 255, 255, 0.5);
--global-genre-button-bg: #d4d4d4;
--global-shadow: rgba(0, 0, 0, 0.1);
--global-border-radius: 0.3rem;
--primary-accent: #a6e3a1;
--primary-accent-bg: #a6e3a1;
--logo-text-transparent: url('https://raw.githubusercontent.com/Miruro-no-kuon/Miruro/main/src/assets/miruro-text-transparent-black.png');
--logo-transparent: url('https://raw.githubusercontent.com/Miruro-no-kuon/Miruro/main/src/assets/miruro-transparent-black.png');
--ongoing-dot-color: #aaff00;
--completed-indicator-color: #00aaff;
--cancelled-indicator-color: #ff0000;
--not-yet-aired-indicator-color: #ffa500;
--default-indicator-color: #808080;
}
/* Dark Mode (Catppuccin Mocha Green Theme) */
:root.dark-mode {
--global-primary-bg: #11111b; /* Crust */
--global-primary-bg-tr: rgba(17, 17, 27, 0.9); /* Crust Transparent */
--global-secondary-bg: #181825; /* Mantle */
--global-tertiary-bg: #1e1e2e; /* Base */
--global-div: #181825; /* Mantle */
--global-div-tr: rgba(24, 24, 37, 0.5); /* Mantle Transparent */
--global-border: rgba(205, 214, 244, 0.1); /* Text Transparent */
--global-text: #cdd6f4; /* Text */
--global-text-muted: #a6adc8; /* Subtext0 */
--global-card-bg: #181825; /* Mantle */
--global-card-title-bg: #1e1e2e; /* Base */
--global-card-shadow: rgba(0, 0, 0, 0.6); /* Card Shadow */
--global-primary-skeleton: rgba(108, 112, 134, 0.1); /* Overlay0 */
--global-secondary-skeleton: rgba(108, 112, 134, 0.3); /* Overlay0 */
--global-button-bg: #45475a; /* Surface1 */
--global-button-hover-bg: #585b70; /* Surface2 */
--global-button-shadow: rgba(0, 0, 0, 0.6); /* Button Shadow */
--global-button-text: #cdd6f4; /* Text */
--global-genre-button-bg: #6c7086; /* Overlay0 */
--global-shadow: rgba(255, 255, 255, 0.08); /* Global Shadow */
--logo-text-transparent: url('https://raw.githubusercontent.com/Miruro-no-kuon/Miruro/main/src/assets/miruro-text-transparent-white.png');
--logo-transparent: url('https://raw.githubusercontent.com/Miruro-no-kuon/Miruro/main/src/assets/miruro-transparent-white.png');
}