Skip to content

Commit 66ed155

Browse files
committed
1.1.1 - kirkland signature console theme
1 parent 76110ad commit 66ed155

File tree

3 files changed

+39
-7
lines changed

3 files changed

+39
-7
lines changed

components/page/DefaultActionBar.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,11 @@ const DefaultActionBar: React.FC<DefaultActionBarProps> = ({ items = [] }) => {
216216
children: 'Neon Green Garden',
217217
onClick: () => Utilities.onHandleThemeChange('theme-green'),
218218
},
219+
{
220+
icon: '⊹',
221+
children: 'Kirkland Signature Console',
222+
onClick: () => Utilities.onHandleThemeChange('theme-black-green'),
223+
},
219224
],
220225
},
221226
{

global.scss

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ body.theme-blue {
211211
--theme-background-input: var(--color-blue-60);
212212
--theme-border: var(--color-blue-70);
213213
--theme-border-subdued: var(--color-blue-60-2);
214-
--theme-primary: var(--color-gold-30);
215214
--theme-text: var(--color-blue-10);
216215
--theme-button: var(--color-blue-10);
217216
--theme-button-text: var(--color-blue-80);
@@ -229,7 +228,6 @@ body.theme-light {
229228
--theme-background-input: var(--color-gray-10);
230229
--theme-border: var(--color-gray-20);
231230
--theme-border-subdued: var(--color-gray-40-2);
232-
--theme-primary: var(--color-blue-60);
233231
--theme-text: var(--color-black-100);
234232
--theme-button: var(--color-black-100);
235233
--theme-button-text: var(--color-white);
@@ -247,7 +245,6 @@ body.theme-dark {
247245
--theme-background-input: var(--color-gray-60);
248246
--theme-border: var(--color-gray-80);
249247
--theme-border-subdued: var(--color-gray-70-3);
250-
--theme-primary: var(--color-gold-30);
251248
--theme-text: var(--color-white);
252249
--theme-button: var(--color-white);
253250
--theme-button-text: var(--color-black-100);
@@ -265,7 +262,6 @@ body.theme-green {
265262
--theme-background-input: var(--color-neon-green-30);
266263
--theme-border: var(--color-neon-green-60);
267264
--theme-border-subdued: var(--color-neon-green-60-3);
268-
--theme-primary: var(--color-gold-30);
269265
--theme-text: var(--color-neon-green-100);
270266
--theme-button: var(--color-neon-green-100);
271267
--theme-button-text: var(--color-neon-green-10);
@@ -283,7 +279,6 @@ body.theme-black-red {
283279
--theme-background-input: var(--color-red-60);
284280
--theme-border: var(--color-red-60-7);
285281
--theme-border-subdued: var(--color-red-60-3);
286-
--theme-primary: var(--color-gold-30);
287282
--theme-text: var(--color-red-30);
288283
--theme-button: var(--color-red-100);
289284
--theme-button-text: var(--color-red-20);
@@ -301,7 +296,6 @@ body.theme-black-teal {
301296
--theme-background-input: var(--color-teal-60);
302297
--theme-border: var(--color-teal-60-7);
303298
--theme-border-subdued: var(--color-teal-60-3);
304-
--theme-primary: var(--color-gold-30);
305299
--theme-text: var(--color-teal-30);
306300
--theme-button: var(--color-teal-100);
307301
--theme-button-text: var(--color-teal-20);
@@ -311,6 +305,23 @@ body.theme-black-teal {
311305
--theme-focused-foreground-subdued: var(--color-teal-70-4);
312306
}
313307

308+
body.theme-black-green {
309+
--theme-overlay: var(--color-black-100-4);
310+
--theme-background: var(--color-black-100);
311+
--theme-background-modal: var(--color-gray-90);
312+
--theme-background-modal-footer: var(--color-gray-80);
313+
--theme-background-input: var(--color-gray-70);
314+
--theme-border: var(--color-gray-80);
315+
--theme-border-subdued: var(--color-gray-70-3);
316+
--theme-text: var(--color-green-50);
317+
--theme-button: var(--color-green-50);
318+
--theme-button-text: var(--color-green-80);
319+
--theme-button-foreground: var(--color-green-80);
320+
--theme-button-background: var(--color-green-90);
321+
--theme-focused-foreground: var(--color-gray-30);
322+
--theme-focused-foreground-subdued: var(--color-gray-40);
323+
}
324+
314325
body.font-use-berkeley-mono {
315326
--font-family-mono: 'TX02Mono-Regular', sans-serif;
316327
}
@@ -358,6 +369,7 @@ body {
358369
--color-black-100-4: rgba(0, 0, 0, 0.4);
359370
--color-black-daybreak-100: rgba(4, 2, 0, 1);
360371
--color-black-daybreak-100-4: rgba(4, 2, 0, 0.4);
372+
361373
--color-blue-10: rgba(237, 245, 255, 1);
362374
--color-blue-100: rgba(0, 17, 65, 1);
363375
--color-blue-20: rgba(208, 226, 255, 1);
@@ -376,6 +388,7 @@ body {
376388
--color-blue-80-6: rgba(0, 45, 156, 0.6);
377389
--color-blue-90: rgba(0, 29, 108, 1);
378390
--color-blue-90-6: rgba(0, 29, 108, 0.6);
391+
379392
--color-daybreak: rgba(255, 108, 4, 1);
380393
--color-daybreak-1: rgba(255, 108, 4, 0.1);
381394
--color-daybreak-10: rgba(239, 99, 0, 1);
@@ -392,7 +405,9 @@ body {
392405
--color-daybreak-70-3: rgba(121, 50, 0, 0.3);
393406
--color-daybreak-80: rgba(102, 42, 0, 1);
394407
--color-daybreak-90: rgba(82, 34, 0, 1);
408+
395409
--color-gold-30: rgba(241, 194, 27, 1);
410+
396411
--color-gray-10: rgba(244, 244, 244, 1);
397412
--color-gray-100: rgba(22, 22, 22, 1);
398413
--color-gray-20: rgba(224, 224, 224, 1);
@@ -410,8 +425,20 @@ body {
410425
--color-gray-80-6: rgba(57, 57, 57, 0.6);
411426
--color-gray-90: rgba(38, 38, 38, 1);
412427
--color-gray-90-6: rgba(38, 38, 38, 0.6);
428+
429+
--color-green-100: rgba(7, 25, 8, 1);
430+
--color-green-100: rgba(7, 25, 8, 1);
431+
--color-green-90: rgba(2, 45, 13, 1);
432+
--color-green-80: rgba(4, 67, 23, 1);
433+
--color-green-70: rgba(14, 96, 39, 1);
413434
--color-green-60: rgba(25, 128, 56, 1);
414435
--color-green-60-3: rgba(25, 128, 56, 0.3);
436+
--color-green-50: rgba(36, 161, 72, 1);
437+
--color-green-40: rgba(66, 190, 101, 1);
438+
--color-green-30: rgba(111, 220, 140, 1);
439+
--color-green-20: rgba(167, 240, 186, 1);
440+
--color-green-10: rgba(222, 251, 230, 1);
441+
415442
--color-neon-green-10: rgba(242, 255, 233, 1);
416443
--color-neon-green-100: rgba(10, 44, 2, 1);
417444
--color-neon-green-100-1: rgba(10, 44, 2, 0.1);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"node": ">=18"
66
},
77
"license": "MIT",
8-
"version": "1.1.0",
8+
"version": "1.1.1",
99
"scripts": {
1010
"dev": "next -p 10000",
1111
"build": "next build",

0 commit comments

Comments
 (0)