|
| 1 | +/** |
| 2 | + * "Would you like the cream, the off-white, the white, the ivory, the bone, or the beige?" |
| 3 | + * -- "Yes, and I'll take it with my coffee." |
| 4 | + * |
| 5 | + * Coffee theme isn't loud, but it's proud. Subdued pastel colours based on the Black theme, whilst stripping out most of the blue. |
| 6 | + * _cough_ no !important _cough_ |
| 7 | + * |
| 8 | + * Created by KDallas | V1.0 | 23/08/2024 |
| 9 | + * https://wlab.au/ |
| 10 | + * |
| 11 | + */ |
| 12 | + |
| 13 | +@colorPrimary : #111; |
| 14 | +@colorBgMain: #222; |
| 15 | +@colorSecondary: #333; |
| 16 | +@colorDarkGrey: #3b3b3b; |
| 17 | +@colorAccent: #444; |
| 18 | +@colorBgSecond: #888; |
| 19 | + |
| 20 | +@colorDarkest: #5a3d1c; // hsl(32deg 53% 23%) |
| 21 | +@colorHighlite: #764f23; // hsl(32deg 54.55% 30%) |
| 22 | +@colorBgDarker: #865f32; // hsl(32deg 45.65% 36%) |
| 23 | +@colorBgDark: #695033; // hsl(32deg 34.62% 30.5%) |
| 24 | +@colorActive: #b47834; // hsl(32deg 54.98% 45.5%) |
| 25 | +@colorSelect: #dea25e; // hsl(32deg 65.98% 62%) |
| 26 | +@linkTrans: #ebbc87; // hsl(32deg 71.43% 72.5%) |
| 27 | +@noticeTrans: #ff88001a; // hsl(32deg 100% 50% / 10%) |
| 28 | + |
| 29 | + |
| 30 | +body, .bodyTab, .tabHeaderContainer { |
| 31 | + background-color: @colorBgMain; |
| 32 | + |
| 33 | + .tabHeader.active, .tabHeader:active { |
| 34 | + background-color: @colorActive; |
| 35 | + &:hover { |
| 36 | + background-color: @colorSelect; |
| 37 | + color: @colorSecondary; |
| 38 | + } |
| 39 | + } |
| 40 | +} |
| 41 | + |
| 42 | +#loginContainer, .sideItemList, #sideMenuContainer, .subMenuWell { |
| 43 | + background-color: @colorSecondary; |
| 44 | +} |
| 45 | + |
| 46 | +.ServerGroupContainer { |
| 47 | + .ServerGroup.Online { |
| 48 | + background-color: @colorBgSecond; |
| 49 | + border-color: @colorBgSecond; |
| 50 | + padding: 2px; |
| 51 | + .ServerGroupHeader { |
| 52 | + background-color: @colorBgDark; |
| 53 | + border-radius: 8px 8px 5px 5px; |
| 54 | + margin-bottom: 4px; |
| 55 | + } |
| 56 | + .InstanceList { |
| 57 | + border-radius: 5px 5px 16px 16px; |
| 58 | + .ServerEntry { |
| 59 | + .ServerEntryImage.Offline { |
| 60 | + filter: sepia(1) saturate(2) hue-rotate(0deg) brightness(0.2); |
| 61 | + } |
| 62 | + &.NewServerEntry { |
| 63 | + background-color: @colorActive; |
| 64 | + } |
| 65 | + .ServerEntryInfo { |
| 66 | + .bgInfo { |
| 67 | + background-color: @colorActive; |
| 68 | + border-color: @colorActive; |
| 69 | + &:hover { |
| 70 | + background-color: @colorDarkest; |
| 71 | + border-color: @colorDarkest; |
| 72 | + } |
| 73 | + } |
| 74 | + } |
| 75 | + } |
| 76 | + } |
| 77 | + } |
| 78 | +} |
| 79 | + |
| 80 | +button, .button { |
| 81 | + border: 1px solid @colorActive; |
| 82 | + background-color: @colorActive; |
| 83 | + &:hover { |
| 84 | + background-color: @colorHighlite; |
| 85 | + } |
| 86 | +} |
| 87 | + |
| 88 | +a { |
| 89 | + color: @colorSelect; |
| 90 | + &:hover { |
| 91 | + color: @colorActive; |
| 92 | + } |
| 93 | +} |
| 94 | + |
| 95 | +.iconButton { |
| 96 | + &.toggled { |
| 97 | + background-color: @colorDarkGrey; |
| 98 | + } |
| 99 | + &:hover { |
| 100 | + background-color: @colorDarkest; |
| 101 | + border-color: @colorDarkest; |
| 102 | + } |
| 103 | +} |
| 104 | + |
| 105 | +.bgPurple, .bgPink, .bgInfo { |
| 106 | + background-color: @colorAccent; |
| 107 | + border: 1px solid @colorAccent; |
| 108 | + &:hover { |
| 109 | + background-color: @colorActive; |
| 110 | + } |
| 111 | +} |
| 112 | + |
| 113 | +#mainBody { |
| 114 | + background: @colorBgMain; |
| 115 | +} |
| 116 | + |
| 117 | +#sideMenu a { |
| 118 | + font-size: 100%; |
| 119 | + |
| 120 | + &:active { |
| 121 | + background-color: @colorPrimary; |
| 122 | + } |
| 123 | + &.selected { |
| 124 | + color: @colorSelect; |
| 125 | + } |
| 126 | + &.hasNotice { |
| 127 | + background-color: @noticeTrans; |
| 128 | + } |
| 129 | + &.info { |
| 130 | + .warn, .subtitle { |
| 131 | + color: @colorSelect; |
| 132 | + } |
| 133 | + } |
| 134 | +} |
| 135 | + |
| 136 | +input[type=text], input[type=password], input[type=url], input[type=number], input[type=email], input[type=search], select, textarea, .popupTrigger { |
| 137 | + background-color: #474747; |
| 138 | +} |
| 139 | + |
| 140 | +input.searchBox { |
| 141 | + background-color:transparent; |
| 142 | +} |
| 143 | + |
| 144 | +.settingsGroup .groupBody { |
| 145 | + .settingContainer { |
| 146 | + background-color: @colorSecondary; |
| 147 | + border-color: @colorAccent; |
| 148 | + } |
| 149 | + .settingInfo { |
| 150 | + color: @linkTrans; |
| 151 | + } |
| 152 | +} |
| 153 | + |
| 154 | +.wizardTab .wizardContents { |
| 155 | + background-color: @colorBgMain; |
| 156 | + border-bottom: 8px solid @colorAccent; |
| 157 | + |
| 158 | + h2 { |
| 159 | + background-color: @colorAccent; |
| 160 | + } |
| 161 | + |
| 162 | + .containerWarning { |
| 163 | + button { |
| 164 | + &.bgInfo { |
| 165 | + background-color: @colorDarkest; |
| 166 | + border-color: @colorDarkest; |
| 167 | + &:hover { |
| 168 | + background-color: @colorActive; |
| 169 | + border-color: @colorActive; |
| 170 | + } |
| 171 | + } |
| 172 | + } |
| 173 | + } |
| 174 | +} |
| 175 | + |
| 176 | +#tabInfo { |
| 177 | + h2 { |
| 178 | + margin: 6px 0 0 0; |
| 179 | + font-size: 1.7em; |
| 180 | + font-weight: bold; |
| 181 | + } |
| 182 | +} |
| 183 | + |
| 184 | +.scheduleTriggerInfo { |
| 185 | + border: 1px solid @colorAccent; |
| 186 | + background-color: @colorSecondary; |
| 187 | +} |
| 188 | + |
| 189 | +.splitViewInfo.splitViewInfo { |
| 190 | + background-color: @colorBgMain; |
| 191 | +} |
| 192 | + |
| 193 | +.itemList .item { |
| 194 | + &.selected { |
| 195 | + border-right: 4px solid @colorSelect; |
| 196 | + } |
| 197 | + &:hover { |
| 198 | + background-color: @colorBgDark; |
| 199 | + } |
| 200 | +} |
| 201 | + |
| 202 | +#fileManagerHeader .fmPathSegment { |
| 203 | + background-color: @colorHighlite; |
| 204 | + &::after { |
| 205 | + border-left: 10px solid @colorHighlite; |
| 206 | + } |
| 207 | +} |
| 208 | + |
| 209 | +#fileManagerHeader .fmPathSegment:nth-child(even) { |
| 210 | + background-color: @colorBgDarker; |
| 211 | + &::after { |
| 212 | + border-left: 10px solid @colorBgDarker; |
| 213 | + } |
| 214 | +} |
| 215 | + |
| 216 | +#fileManagerHeader .fmPathSegment, |
| 217 | +#fileManagerHeader .fmPathSegment:nth-child(even) { |
| 218 | + &::after { |
| 219 | + left: 9px; |
| 220 | + } |
| 221 | + &:hover { |
| 222 | + background-color: @colorSelect; |
| 223 | + color: @colorSecondary; |
| 224 | + &::after { |
| 225 | + border-left: 10px solid @colorSelect; |
| 226 | + } |
| 227 | + } |
| 228 | +} |
| 229 | + |
| 230 | +.consoleTimestamp { |
| 231 | + color: @colorSelect; |
| 232 | +} |
| 233 | + |
| 234 | +.datastoreContainer { |
| 235 | + .datastoreItem { |
| 236 | + background-color: @colorDarkGrey; |
| 237 | + } |
| 238 | + .newDatastoreItem { |
| 239 | + background-color: @colorActive; |
| 240 | + } |
| 241 | +} |
| 242 | + |
| 243 | +.bodyTab .analyticsSection .sectionHeader .headerControls div.active { |
| 244 | + color: @colorActive; |
| 245 | +} |
0 commit comments