Make gutter semi transparent.

Darker colors.
This commit is contained in:
Jonatan Heyman 2022-12-30 03:03:20 +01:00
parent e21ec44556
commit 5a4a092521
2 changed files with 8 additions and 5 deletions

View File

@ -22,10 +22,12 @@ body {
.blocks-layer .block-even {
background: #3f3b4b;
/*background: #3f3b4b;*/
background: #232537;
}
.blocks-layer .block-odd {
background: rgb(57, 71, 77);
/*background: rgb(57, 71, 77);*/
background: #222f38;
}
.block-start {

View File

@ -23,10 +23,10 @@ base0C = '#d08770', // orange
base0D = '#ebcb8b', // yellow
base0E = '#a3be8c', // green
base0F = '#b48ead'; // purple
const invalid = '#d30102', darkBackground = '#252a33', background = base00, tooltipBackground = base01, selection = base03, cursor = '#fff';
const invalid = '#d30102', darkBackground = '#252a33', background = '#1e222a', tooltipBackground = base01, selection = base03, cursor = '#fff';
const highlightBackground = 'rgba(255,255,255,0.04)';
const lineNumberColor = '#535963';
const lineNumberColor = 'rgba(255,255,255, 0.15)';
const commentColor = '#888d97';
const matchingBracket = 'rgba(255,255,255,0.1)';
@ -72,7 +72,8 @@ const nordTheme = /*@__PURE__*/EditorView.theme({
outline: `0.5px solid #bc8f8f`
},
'.cm-gutters': {
backgroundColor: base00,
//backgroundColor: base00,
backgroundColor: 'rgba(0,0,0, 0.1)',
color: lineNumberColor,
border: 'none'
},