1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-11 08:46:20 +00:00

add Vulcan UI theme

This commit is contained in:
Baptiste Augrain
2020-02-03 18:45:01 +01:00
committed by Junyoung Choi
parent e44381f295
commit eae964f7e7
2 changed files with 33 additions and 1 deletions

View File

@@ -31,6 +31,11 @@ export default [
label: i18n.__('Solarized Dark'),
isDark: true
},
{
name: 'vulcan',
label: i18n.__('Vulcan'),
isDark: true
},
{
name: 'white',
label: i18n.__('White'),

View File

@@ -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'
$themes = 'monokai' 'nord' 'vulcan'