mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
Merge pull request #1609 from kylesferrazza/solarized
Add support for the Solarized Dark color scheme
This commit is contained in:
commit
2c58dbb344
@ -596,6 +596,10 @@
|
|||||||
"message": "Light",
|
"message": "Light",
|
||||||
"description": "Light color"
|
"description": "Light color"
|
||||||
},
|
},
|
||||||
|
"solarizedDark": {
|
||||||
|
"message": "Solarized Dark",
|
||||||
|
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
|
||||||
|
},
|
||||||
"exportVault": {
|
"exportVault": {
|
||||||
"message": "Export Vault"
|
"message": "Export Vault"
|
||||||
},
|
},
|
||||||
|
@ -37,6 +37,23 @@ $button-color: lighten($text-color, 40%);
|
|||||||
$button-color-primary: darken($brand-primary, 8%);
|
$button-color-primary: darken($brand-primary, 8%);
|
||||||
$button-color-danger: darken($brand-danger, 10%);
|
$button-color-danger: darken($brand-danger, 10%);
|
||||||
|
|
||||||
|
$solarizedDarkBase03: #002b36;
|
||||||
|
$solarizedDarkBase02: #073642;
|
||||||
|
$solarizedDarkBase01: #586e75;
|
||||||
|
$solarizedDarkBase00: #657b83;
|
||||||
|
$solarizedDarkBase0: #839496;
|
||||||
|
$solarizedDarkBase1: #93a1a1;
|
||||||
|
$solarizedDarkBase2: #eee8d5;
|
||||||
|
$solarizedDarkBase3: #fdf6e3;
|
||||||
|
$solarizedDarkYellow: #b58900;
|
||||||
|
$solarizedDarkOrange: #cb4b16;
|
||||||
|
$solarizedDarkRed: #dc322f;
|
||||||
|
$solarizedDarkMagenta: #d33682;
|
||||||
|
$solarizedDarkViolet: #6c71c4;
|
||||||
|
$solarizedDarkBlue: #268bd2;
|
||||||
|
$solarizedDarkCyan: #2aa198;
|
||||||
|
$solarizedDarkGreen: #859900;
|
||||||
|
|
||||||
$themes: (
|
$themes: (
|
||||||
light: (
|
light: (
|
||||||
textColor: $text-color,
|
textColor: $text-color,
|
||||||
@ -185,6 +202,55 @@ $themes: (
|
|||||||
calloutBorderColor: $nord0,
|
calloutBorderColor: $nord0,
|
||||||
calloutBackgroundColor: $nord2,
|
calloutBackgroundColor: $nord2,
|
||||||
),
|
),
|
||||||
|
solarizedDark: (
|
||||||
|
textColor: $solarizedDarkBase2,
|
||||||
|
borderColor: $solarizedDarkBase03,
|
||||||
|
backgroundColor: $solarizedDarkBase03,
|
||||||
|
backgroundColorAlt: $solarizedDarkBase02,
|
||||||
|
scrollbarColor: $solarizedDarkBase0,
|
||||||
|
scrollbarHoverColor: $solarizedDarkBase2,
|
||||||
|
boxBackgroundColor: $solarizedDarkBase03,
|
||||||
|
boxBackgroundHoverColor: $solarizedDarkBase02,
|
||||||
|
boxBorderColor: $solarizedDarkBase02,
|
||||||
|
tabBackgroundColor: $solarizedDarkBase02,
|
||||||
|
tabBackgroundHoverColor: $solarizedDarkBase01,
|
||||||
|
headerColor: $solarizedDarkBase1,
|
||||||
|
headerBackgroundColor: $solarizedDarkBase02,
|
||||||
|
headerBackgroundHoverColor: $solarizedDarkBase01,
|
||||||
|
headerBorderColor: $solarizedDarkBase03,
|
||||||
|
headerInputBackgroundColor: $solarizedDarkBase2,
|
||||||
|
headerInputBackgroundFocusColor: $solarizedDarkBase1,
|
||||||
|
headerInputColor: $solarizedDarkBase01,
|
||||||
|
headerInputPlaceholderColor: $solarizedDarkBase00,
|
||||||
|
listItemBackgroundHoverColor: $solarizedDarkBase02,
|
||||||
|
disabledIconColor: $solarizedDarkBase0,
|
||||||
|
disabledBoxOpacity: 0.5,
|
||||||
|
headingColor: $solarizedDarkBase0,
|
||||||
|
labelColor: $solarizedDarkBase0,
|
||||||
|
mutedColor: $solarizedDarkBase0,
|
||||||
|
totpStrokeColor: $solarizedDarkBase0,
|
||||||
|
boxRowButtonColor: $solarizedDarkBase0,
|
||||||
|
boxRowButtonHoverColor: $solarizedDarkBase2,
|
||||||
|
inputBorderColor: $solarizedDarkBase03,
|
||||||
|
inputBackgroundColor: $solarizedDarkBase01,
|
||||||
|
inputPlaceholderColor: lighten($solarizedDarkBase00, 20%),
|
||||||
|
buttonBackgroundColor: $solarizedDarkBase00,
|
||||||
|
buttonBorderColor: $solarizedDarkBase03,
|
||||||
|
buttonColor: $solarizedDarkBase1,
|
||||||
|
buttonPrimaryColor: $solarizedDarkCyan,
|
||||||
|
buttonDangerColor: $solarizedDarkRed,
|
||||||
|
primaryColor: $solarizedDarkGreen,
|
||||||
|
primaryAccentColor: $solarizedDarkCyan,
|
||||||
|
dangerColor: $solarizedDarkRed,
|
||||||
|
successColor: $solarizedDarkGreen,
|
||||||
|
infoColor: $solarizedDarkGreen,
|
||||||
|
warningColor: $solarizedDarkYellow,
|
||||||
|
logoSuffix: 'white',
|
||||||
|
passwordNumberColor: $solarizedDarkCyan,
|
||||||
|
passwordSpecialColor: $solarizedDarkYellow,
|
||||||
|
calloutBorderColor: $solarizedDarkBase03,
|
||||||
|
calloutBackgroundColor: $solarizedDarkBase01,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
@mixin themify($themes: $themes) {
|
@mixin themify($themes: $themes) {
|
||||||
|
@ -43,6 +43,7 @@ export class OptionsComponent implements OnInit {
|
|||||||
{ name: i18nService.t('light'), value: 'light' },
|
{ name: i18nService.t('light'), value: 'light' },
|
||||||
{ name: i18nService.t('dark'), value: 'dark' },
|
{ name: i18nService.t('dark'), value: 'dark' },
|
||||||
{ name: 'Nord', value: 'nord' },
|
{ name: 'Nord', value: 'nord' },
|
||||||
|
{ name: i18nService.t('solarizedDark'), value: 'solarizedDark' },
|
||||||
];
|
];
|
||||||
this.uriMatchOptions = [
|
this.uriMatchOptions = [
|
||||||
{ name: i18nService.t('baseDomain'), value: UriMatchType.Domain },
|
{ name: i18nService.t('baseDomain'), value: UriMatchType.Domain },
|
||||||
|
Loading…
Reference in New Issue
Block a user