diff --git a/browser/lib/ui-themes.js b/browser/lib/ui-themes.js index 3d9044c6d..0a66a349c 100644 --- a/browser/lib/ui-themes.js +++ b/browser/lib/ui-themes.js @@ -31,6 +31,11 @@ export default [ label: i18n.__('Solarized Dark'), isDark: true }, + { + name: 'vulcan', + label: i18n.__('Vulcan'), + isDark: true + }, { name: 'white', label: i18n.__('White'), diff --git a/browser/main/modals/PreferencesModal/ConfigTab.styl b/browser/main/modals/PreferencesModal/ConfigTab.styl index dbfb393e5..5ae5ba770 100644 --- a/browser/main/modals/PreferencesModal/ConfigTab.styl +++ b/browser/main/modals/PreferencesModal/ConfigTab.styl @@ -182,10 +182,12 @@ apply-theme(theme) color get-theme-var(theme, 'text-color') .group-header + .group-header--sub color get-theme-var(theme, 'text-color') border-color get-theme-var(theme, 'borderColor') .group-header2 + .group-header2--sub color get-theme-var(theme, 'text-color') .group-section-control-input diff --git a/browser/styles/index.styl b/browser/styles/index.styl index 3fc650652..2338938f7 100644 --- a/browser/styles/index.styl +++ b/browser/styles/index.styl @@ -428,6 +428,33 @@ $ui-nord-table-even-backgroundColor = darken($ui-nord-noteDetail-backgroundColor $ui-nord-table-head-backgroundColor = $ui-nord-table-even-backgroundColor $ui-nord-table-borderColor = lighten(darken(#21252B, 10%), 20%) +/******* Vulcan theme ********/ +$ui-vulcan-backgroundColor = #161719 +$ui-vulcan-noteList-backgroundColor = #161719 +$ui-vulcan-noteDetail-backgroundColor = #161719 +$ui-vulcan-tagList-backgroundColor = #FFFFFF + +$ui-vulcan-text-color = #999999 +$ui-vulcan-inactive-text-color = #999999 +$ui-vulcan-active-color = #ffffff + +$ui-vulcan-borderColor = #282a2e + +$ui-vulcan-tag-backgroundColor = #282a2e + +$ui-vulcan-button-backgroundColor = #282a2e +$ui-vulcan-button--active-color = #a3a8ae +$ui-vulcan-button--active-backgroundColor = #282a2e +$ui-vulcan-button--hover-backgroundColor = #282a2e + +$ui-vulcan-kbd-backgroundColor = lighten($ui-vulcan-text-color, 50%) +$ui-vulcan-kbd-color = $ui-vulcan-backgroundColor + +$ui-vulcan-table-odd-backgroundColor = $ui-vulcan-noteDetail-backgroundColor +$ui-vulcan-table-even-backgroundColor = darken($ui-vulcan-noteDetail-backgroundColor, 10%) +$ui-vulcan-table-head-backgroundColor = $ui-vulcan-table-even-backgroundColor +$ui-vulcan-table-borderColor = lighten(darken(#21252B, 10%), 20%) + debug-theme-var(theme, suffix) @@ -436,4 +463,4 @@ debug-theme-var(theme, suffix) get-theme-var(theme, suffix) lookup('$ui-' + theme + '-' + suffix) -$themes = 'monokai' 'nord' \ No newline at end of file +$themes = 'monokai' 'nord' 'vulcan' \ No newline at end of file