Skip to content

Commit

Permalink
colors: make secondary background less dark
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbr committed Jan 8, 2024
1 parent 2ac9c3d commit e93f9e7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions base16/skylighting/dark.theme.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
},

"text-color": "#<%- base["05"]["hex"] %>",
"background-color": "#<%- base["01"]["hex"] %>",
"background-color": "#<%- base["02"]["hex"] %>",
"line-number-color": "#<%- base["05"]["hex"] %>",
"line-number-background-color": "#<%- base["02"]["hex"] %>",
"line-number-background-color": "#<%- base["03"]["hex"] %>",
"text-styles": {
"Alert": {
"text-color": "#<%- base["08"]["hex"] %>",
Expand Down
2 changes: 1 addition & 1 deletion pandoc/copperflame-dark.tex
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
\colorlet{foreground}{base06}
\colorlet{background}{base00}
\colorlet{foreground-secondary}{base04}
\colorlet{background-secondary}{base01}
\colorlet{background-secondary}{base02}

\colorlet{shadow}{black}

Expand Down
2 changes: 1 addition & 1 deletion web/css/colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $error: null !default;
$foreground: palette.$base06;
$background: palette.$base00;
$foreground-secondary: palette.$base04;
$background-secondary: palette.$base01;
$background-secondary: palette.$base02;

$shadow: rgba(black, 0.25);
$error: palette.$base08;
Expand Down
2 changes: 1 addition & 1 deletion web/js/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const darkColors: ColorScheme = {
foreground: palette.base06,
background: palette.base00,
foregroundSecondary: palette.base04,
backgroundSecondary: palette.base01,
backgroundSecondary: palette.base02,
error: palette.base08,
shadow: "#000000",
highlight: palette.baseF6,
Expand Down

0 comments on commit e93f9e7

Please sign in to comment.