|
1 | 1 | :root { |
2 | 2 | // Frosted Glass variables |
3 | | - --version: 'Frosted Glass 2.0.14'; |
| 3 | + --version: 'Frosted Glass 2.0.15'; |
4 | 4 |
|
5 | 5 | --TB-top: calc(var(--server-container) + var(--window-padding)); |
6 | 6 | --TB-tr-roundness: var(--window-roundness); |
7 | 7 | --TB-position-top: var(--TB-top, var(--window-padding)); |
8 | 8 | --TB-position-right: var(--window-padding); |
9 | | - --tint: rgba(var(--tint-colour), var(--tint-brightness)); |
10 | | - --white-half: rgba(255, 255, 255, 0.025); |
11 | | - --white: rgba(255, 255, 255, 0.05); |
12 | | - --white-double: rgba(255, 255, 255, 0.1); |
13 | | - --white-triple: rgba(255, 255, 255, 0.15); |
| 9 | + --tint: rgb(var(--tint-colour), var(--tint-brightness)); |
| 10 | + --white-half: rgb(255, 255, 255, 0.025); |
| 11 | + --white: rgb(255, 255, 255, 0.05); |
| 12 | + --white-double: rgb(255, 255, 255, 0.1); |
| 13 | + --white-triple: rgb(255, 255, 255, 0.15); |
14 | 14 | --gradient: linear-gradient(var(--gradient-direction), rgb(var(--gradient-primary)), rgb(var(--gradient-secondary))); |
15 | | - --gradient-20: linear-gradient(var(--gradient-direction), rgba(var(--gradient-primary), 0.2), rgba(var(--gradient-secondary), 0.2)); |
16 | | - --gradient-50: linear-gradient(var(--gradient-direction), rgba(var(--gradient-primary), 0.5), rgba(var(--gradient-secondary), 0.5)); |
17 | | - --gradient-90: linear-gradient(var(--gradient-direction), rgba(var(--gradient-primary), 0.9), rgba(var(--gradient-secondary), 0.9)); |
| 15 | + --gradient-20: linear-gradient(var(--gradient-direction), rgb(var(--gradient-primary), 0.2), rgb(var(--gradient-secondary), 0.2)); |
| 16 | + --gradient-50: linear-gradient(var(--gradient-direction), rgb(var(--gradient-primary), 0.5), rgb(var(--gradient-secondary), 0.5)); |
| 17 | + --gradient-90: linear-gradient(var(--gradient-direction), rgb(var(--gradient-primary), 0.9), rgb(var(--gradient-secondary), 0.9)); |
18 | 18 | --text-shadow: 1; |
19 | 19 | --chat-embed: var(--background-secondary); |
20 | 20 |
|
|
50 | 50 | --interactive-active: #fff; |
51 | 51 | --interactive-muted: #777; |
52 | 52 | --background-primary: transparent; |
53 | | - --background-secondary: rgba(0, 0, 0, 0.3); |
| 53 | + --background-secondary: rgb(0, 0, 0, 0.3); |
54 | 54 | --background-secondary-alt: transparent; |
55 | 55 | --background-tertiary: transparent; |
56 | 56 | --background-accent: #4f545c; |
57 | 57 | --background-floating: transparent; |
58 | 58 | --background-mobile-primary: #36393f; |
59 | 59 | --background-mobile-secondary: #2f3136; |
60 | | - --background-modifier-hover: rgba(255, 255, 255, 0.05); |
61 | | - --background-modifier-active: rgba(255, 255, 255, 0.07); |
62 | | - --background-modifier-selected: rgba(255, 255, 255, 0.1); |
63 | | - --background-modifier-accent: rgba(255, 255, 255, 0.1); |
64 | | - --background-mentioned: rgba(250, 166, 26, 0.05); |
65 | | - --background-mentioned-hover: rgba(250, 166, 26, 0.08); |
66 | | - --background-message-hover: rgba(4, 4, 5, 0.07); |
67 | | - --elevation-stroke: 0 0 0 1px rgba(4, 4, 5, 0.15); |
68 | | - --elevation-low: 0 1px 0 rgba(4, 4, 5, 0.2), 0 1.5px 0 rgba(6, 6, 7, 0.05), 0 2px 0 rgba(4, 4, 5, 0.05); |
69 | | - --elevation-medium: 0 4px 4px rgba(0, 0, 0, 0.16); |
70 | | - --elevation-high: 0 8px 16px rgba(0, 0, 0, 0.24); |
| 60 | + --background-modifier-hover: rgb(255, 255, 255, 0.05); |
| 61 | + --background-modifier-active: rgb(255, 255, 255, 0.07); |
| 62 | + --background-modifier-selected: rgb(255, 255, 255, 0.1); |
| 63 | + --background-modifier-accent: rgb(255, 255, 255, 0.1); |
| 64 | + --background-mentioned: rgb(250, 166, 26, 0.05); |
| 65 | + --background-mentioned-hover: rgb(250, 166, 26, 0.08); |
| 66 | + --background-message-hover: rgb(4, 4, 5, 0.07); |
| 67 | + --elevation-stroke: 0 0 0 1px rgb(4, 4, 5, 0.15); |
| 68 | + --elevation-low: 0 1px 0 rgb(4, 4, 5, 0.2), 0 1.5px 0 rgb(6, 6, 7, 0.05), 0 2px 0 rgb(4, 4, 5, 0.05); |
| 69 | + --elevation-medium: 0 4px 4px rgb(0, 0, 0, 0.16); |
| 70 | + --elevation-high: 0 8px 16px rgb(0, 0, 0, 0.24); |
71 | 71 | --logo-primary: #fff; |
72 | | - --guild-header-text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); |
73 | | - --channeltextarea-background: rgba(255, 255, 255, 0.05); |
| 72 | + --guild-header-text-shadow: 0 1px 1px rgb(0, 0, 0, 0.4); |
| 73 | + --channeltextarea-background: rgb(255, 255, 255, 0.05); |
74 | 74 | --activity-card-background: #202225; |
75 | 75 | --textbox-markdown-syntax: #8e9297; |
76 | | - --deprecated-card-bg: rgba(0, 0, 0, 0.3); |
77 | | - --deprecated-card-editable-bg: rgba(0, 0, 0, 0.3); |
| 76 | + --deprecated-card-bg: rgb(0, 0, 0, 0.3); |
| 77 | + --deprecated-card-editable-bg: rgb(0, 0, 0, 0.3); |
78 | 78 | --deprecated-store-bg: #36393f; |
79 | 79 | --deprecated-quickswitcher-input-background: var(--channeltextarea-background); |
80 | | - --deprecated-quickswitcher-input-placeholder: rgba(255, 255, 255, 0.5); |
81 | | - --deprecated-text-input-bg: rgba(0, 0, 0, 0.1); |
82 | | - --deprecated-text-input-border: rgba(0, 0, 0, 0.3); |
| 80 | + --deprecated-quickswitcher-input-placeholder: rgb(255, 255, 255, 0.5); |
| 81 | + --deprecated-text-input-bg: rgb(0, 0, 0, 0.1); |
| 82 | + --deprecated-text-input-border: rgb(0, 0, 0, 0.3); |
83 | 83 | --deprecated-text-input-border-hover: #040405; |
84 | 84 | --deprecated-text-input-border-disabled: #202225; |
85 | 85 | --deprecated-text-input-prefix: #dcddde; |
|
0 commit comments