Skip to content

Commit eae964f

Browse files
daiyamRokt33r
authored andcommitted
add Vulcan UI theme
1 parent e44381f commit eae964f

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

browser/lib/ui-themes.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ export default [
3131
label: i18n.__('Solarized Dark'),
3232
isDark: true
3333
},
34+
{
35+
name: 'vulcan',
36+
label: i18n.__('Vulcan'),
37+
isDark: true
38+
},
3439
{
3540
name: 'white',
3641
label: i18n.__('White'),

browser/styles/index.styl

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,33 @@ $ui-nord-table-even-backgroundColor = darken($ui-nord-noteDetail-backgroundColor
428428
$ui-nord-table-head-backgroundColor = $ui-nord-table-even-backgroundColor
429429
$ui-nord-table-borderColor = lighten(darken(#21252B, 10%), 20%)
430430

431+
/******* Vulcan theme ********/
432+
$ui-vulcan-backgroundColor = #161719
433+
$ui-vulcan-noteList-backgroundColor = #161719
434+
$ui-vulcan-noteDetail-backgroundColor = #161719
435+
$ui-vulcan-tagList-backgroundColor = #FFFFFF
436+
437+
$ui-vulcan-text-color = #999999
438+
$ui-vulcan-inactive-text-color = #999999
439+
$ui-vulcan-active-color = #ffffff
440+
441+
$ui-vulcan-borderColor = #282a2e
442+
443+
$ui-vulcan-tag-backgroundColor = #282a2e
444+
445+
$ui-vulcan-button-backgroundColor = #282a2e
446+
$ui-vulcan-button--active-color = #a3a8ae
447+
$ui-vulcan-button--active-backgroundColor = #282a2e
448+
$ui-vulcan-button--hover-backgroundColor = #282a2e
449+
450+
$ui-vulcan-kbd-backgroundColor = lighten($ui-vulcan-text-color, 50%)
451+
$ui-vulcan-kbd-color = $ui-vulcan-backgroundColor
452+
453+
$ui-vulcan-table-odd-backgroundColor = $ui-vulcan-noteDetail-backgroundColor
454+
$ui-vulcan-table-even-backgroundColor = darken($ui-vulcan-noteDetail-backgroundColor, 10%)
455+
$ui-vulcan-table-head-backgroundColor = $ui-vulcan-table-even-backgroundColor
456+
$ui-vulcan-table-borderColor = lighten(darken(#21252B, 10%), 20%)
457+
431458

432459

433460
debug-theme-var(theme, suffix)
@@ -436,4 +463,4 @@ debug-theme-var(theme, suffix)
436463
get-theme-var(theme, suffix)
437464
lookup('$ui-' + theme + '-' + suffix)
438465

439-
$themes = 'monokai' 'nord'
466+
$themes = 'monokai' 'nord' 'vulcan'

0 commit comments

Comments
 (0)