|
| 1 | +:root { |
| 2 | + /* Accent Colors */ |
| 3 | + --accent-color: #1c71d8; |
| 4 | + --accent-bg-color: #3584e4; |
| 5 | + --accent-fg-color: #ffffff; |
| 6 | + |
| 7 | + /* Destructive Colors */ |
| 8 | + --destructive-color: #c01c28; |
| 9 | + --destructive-bg-color: #e01b24; |
| 10 | + --destructive-fg-color: #ffffff; |
| 11 | + |
| 12 | + /* Success Colors */ |
| 13 | + --success-color: #1b8553; |
| 14 | + --success-bg-color: #2ec27e; |
| 15 | + --success-fg-color: #ffffff; |
| 16 | + |
| 17 | + /* Warning Colors */ |
| 18 | + --warning-color: #9c6e03; |
| 19 | + --warning-bg-color: #e5a50a; |
| 20 | + --warning-fg-color: rgba(0, 0, 0, 0.8); |
| 21 | + |
| 22 | + /* Error Colors */ |
| 23 | + --error-color: #c01c28; |
| 24 | + --error-bg-color: #e01b24; |
| 25 | + --error-fg-color: #ffffff; |
| 26 | + |
| 27 | + /* Window Colors */ |
| 28 | + --window-bg-color: #fafafa; |
| 29 | + --window-fg-color: rgba(0, 0, 0, 0.8); |
| 30 | + |
| 31 | + /* View Colors */ |
| 32 | + --view-bg-color: #ffffff; |
| 33 | + --view-fg-color: rgba(0, 0, 0, 0.8); |
| 34 | + |
| 35 | + /* Header Bar Colors */ |
| 36 | + --headerbar-bg-color: #ffffff; |
| 37 | + --headerbar-fg-color: rgba(0, 0, 0, 0.8); |
| 38 | + --headerbar-border-color: rgba(0, 0, 0, 0.8); |
| 39 | + --headerbar-backdrop-color: #fafafa; |
| 40 | + --headerbar-shade-color: rgba(0, 0, 0, 0.12); |
| 41 | + --headerbar-darker-shade-color: rgba(0, 0, 0, 0.12); |
| 42 | + |
| 43 | + /* Sidebar Colors */ |
| 44 | + --sidebar-bg-color: #ebebeb; |
| 45 | + --sidebar-fg-color: rgba(0, 0, 0, 0.8); |
| 46 | + --sidebar-backdrop-color: #f2f2f2; |
| 47 | + --sidebar-border-color: rgba(0, 0, 0, 0.07); |
| 48 | + --sidebar-shade-color: rgba(0, 0, 0, 0.07); |
| 49 | + |
| 50 | + /* Secondary Sidebar Colors */ |
| 51 | + --secondary-sidebar-bg-color: #f3f3f3; |
| 52 | + --secondary-sidebar-fg-color: rgba(0, 0, 0, 0.8); |
| 53 | + --secondary-sidebar-backdrop-color: #f6f6f6; |
| 54 | + --secondary-sidebar-border-color: rgba(0, 0, 0, 0.07); |
| 55 | + --secondary-sidebar-shade-color: rgba(0, 0, 0, 0.07); |
| 56 | + |
| 57 | + /* Card Colors */ |
| 58 | + --card-bg-color: #ffffff; |
| 59 | + --card-fg-color: rgba(0, 0, 0, 0.8); |
| 60 | + --card-shade-color: rgba(0, 0, 0, 0.07); |
| 61 | + |
| 62 | + /* Thumbnail Colors */ |
| 63 | + --thumbnail-bg-color: #ffffff; |
| 64 | + --thumbnail-fg-color: rgba(0, 0, 0, 0.8); |
| 65 | + |
| 66 | + /* Dialog Colors */ |
| 67 | + --dialog-bg-color: #fafafa; |
| 68 | + --dialog-fg-color: rgba(0, 0, 0, 0.8); |
| 69 | + |
| 70 | + /* Popover Colors */ |
| 71 | + --popover-bg-color: #ffffff; |
| 72 | + --popover-fg-color: rgba(0, 0, 0, 0.8); |
| 73 | + --popover-shade-color: rgba(0, 0, 0, 0.07); |
| 74 | + |
| 75 | + /* Miscellaneous Colors */ |
| 76 | + --shade-color: rgba(0, 0, 0, 0.07); |
| 77 | + --scrollbar-outline-color: #ffffff; |
| 78 | + |
| 79 | + /* Helper Colors */ |
| 80 | + --borders: rgba(0, 0, 0, 0.15); |
| 81 | + |
| 82 | + /* Palette Colors */ |
| 83 | + --blue-1: #99c1f1; |
| 84 | + --blue-2: #62a0ea; |
| 85 | + --blue-3: #3584e4; |
| 86 | + --blue-4: #1c71d8; |
| 87 | + --blue-5: #1a5fb4; |
| 88 | + |
| 89 | + --green-1: #8ff0a4; |
| 90 | + --green-2: #57e389; |
| 91 | + --green-3: #33d17a; |
| 92 | + --green-4: #2ec27e; |
| 93 | + --green-5: #26a269; |
| 94 | + |
| 95 | + --yellow-1: #f9f06b; |
| 96 | + --yellow-2: #f8e45c; |
| 97 | + --yellow-3: #f6d32d; |
| 98 | + --yellow-4: #f5c211; |
| 99 | + --yellow-5: #e5a50a; |
| 100 | + |
| 101 | + --orange-1: #ffbe6f; |
| 102 | + --orange-2: #ffa348; |
| 103 | + --orange-3: #ff7800; |
| 104 | + --orange-4: #e66100; |
| 105 | + --orange-5: #c64600; |
| 106 | + |
| 107 | + --red-1: #f66151; |
| 108 | + --red-2: #ed333b; |
| 109 | + --red-3: #e01b24; |
| 110 | + --red-4: #c01c28; |
| 111 | + --red-5: #a51d2d; |
| 112 | + |
| 113 | + --purple-1: #dc8add; |
| 114 | + --purple-2: #c061cb; |
| 115 | + --purple-3: #9141ac; |
| 116 | + --purple-4: #813d9c; |
| 117 | + --purple-5: #613583; |
| 118 | + |
| 119 | + --brown-1: #cdab8f; |
| 120 | + --brown-2: #b5835a; |
| 121 | + --brown-3: #986a44; |
| 122 | + --brown-4: #865e3c; |
| 123 | + --brown-5: #63452c; |
| 124 | + |
| 125 | + --light-1: #ffffff; |
| 126 | + --light-2: #f6f5f4; |
| 127 | + --light-3: #deddda; |
| 128 | + --light-4: #c0bfbc; |
| 129 | + --light-5: #9a9996; |
| 130 | + |
| 131 | + --dark-1: #77767b; |
| 132 | + --dark-2: #5e5c64; |
| 133 | + --dark-3: #3d3846; |
| 134 | + --dark-4: #241f31; |
| 135 | + --dark-5: #000000; |
| 136 | +} |
| 137 | + |
| 138 | +@media (prefers-color-scheme: dark) { |
| 139 | + :root { |
| 140 | + /* Accent Colors */ |
| 141 | + --accent-color: #78aeed; |
| 142 | + --accent-bg-color: #3584e4; |
| 143 | + --accent-fg-color: #ffffff; |
| 144 | + |
| 145 | + /* Destructive Colors */ |
| 146 | + --destructive-color: #ff7b63; |
| 147 | + --destructive-bg-color: #c01c28; |
| 148 | + --destructive-fg-color: #ffffff; |
| 149 | + |
| 150 | + /* Success Colors */ |
| 151 | + --success-color: #8ff0a4; |
| 152 | + --success-bg-color: #26a269; |
| 153 | + --success-fg-color: #ffffff; |
| 154 | + |
| 155 | + /* Warning Colors */ |
| 156 | + --warning-color: #f8e45c; |
| 157 | + --warning-bg-color: #cd9309; |
| 158 | + --warning-fg-color: rgba(0, 0, 0, 0.8); |
| 159 | + |
| 160 | + /* Error Colors */ |
| 161 | + --error-color: #ff7b63; |
| 162 | + --error-bg-color: #c01c28; |
| 163 | + --error-fg-color: #ffffff; |
| 164 | + |
| 165 | + /* Window Colors */ |
| 166 | + --window-bg-color: #242424; |
| 167 | + --window-fg-color: #ffffff; |
| 168 | + |
| 169 | + /* View Colors */ |
| 170 | + --view-bg-color: #1e1e1e; |
| 171 | + --view-fg-color: #ffffff; |
| 172 | + |
| 173 | + /* Header Bar Colors */ |
| 174 | + --headerbar-bg-color: #303030; |
| 175 | + --headerbar-fg-color: #ffffff; |
| 176 | + --headerbar-border-color: #ffffff; |
| 177 | + --headerbar-backdrop-color: #242424; |
| 178 | + --headerbar-shade-color: rgba(0, 0, 0, 0.36); |
| 179 | + --headerbar-darker-shade-color: rgba(0, 0, 0, 0.9); |
| 180 | + |
| 181 | + /* Sidebar Colors */ |
| 182 | + --sidebar-bg-color: #303030; |
| 183 | + --sidebar-fg-color: #ffffff; |
| 184 | + --sidebar-backdrop-color: #2a2a2a; |
| 185 | + --sidebar-border-color: rgba(0, 0, 0, 0.36); |
| 186 | + --sidebar-shade-color: rgba(0, 0, 0, 0.25); |
| 187 | + |
| 188 | + /* Secondary Sidebar Colors */ |
| 189 | + --secondary-sidebar-bg-color: #2a2a2a; |
| 190 | + --secondary-sidebar-fg-color: #ffffff; |
| 191 | + --secondary-sidebar-backdrop-color: #272727; |
| 192 | + --secondary-sidebar-border-color: rgba(0, 0, 0, 0.36); |
| 193 | + --secondary-sidebar-shade-color: rgba(0, 0, 0, 0.25); |
| 194 | + |
| 195 | + /* Card Colors */ |
| 196 | + --card-bg-color: rgba(255, 255, 255, 0.08); |
| 197 | + --card-fg-color: #ffffff; |
| 198 | + --card-shade-color: rgba(0, 0, 0, 0.36); |
| 199 | + |
| 200 | + /* Thumbnail Colors */ |
| 201 | + --thumbnail-bg-color: #383838; |
| 202 | + --thumbnail-fg-color: #ffffff; |
| 203 | + |
| 204 | + /* Dialog Colors */ |
| 205 | + --dialog-bg-color: #383838; |
| 206 | + --dialog-fg-color: #ffffff; |
| 207 | + |
| 208 | + /*tPopover Colors */ |
| 209 | + --popover-bg-color: #383838; |
| 210 | + --popover-fg-color: #ffffff; |
| 211 | + --popover-shade-color: rgba(0, 0, 0, 0.25); |
| 212 | + |
| 213 | + /* Miscellaneous Colors */ |
| 214 | + --shade-color: rgba(0, 0, 0, 0.25); |
| 215 | + --scrollbar-outline-color: rgba(0, 0, 0, 0.5); |
| 216 | + |
| 217 | + /* Helper Colors */ |
| 218 | + --borders: rgba(255, 255, 255, 0.5); |
| 219 | + } |
| 220 | +} |
0 commit comments