add muted theme color + use it for inputs and tags

This commit is contained in:
Felix Roos 2026-01-20 00:06:44 +01:00
parent 38b7bcb3d2
commit de83805fd9
No known key found for this signature in database
44 changed files with 95 additions and 41 deletions

View file

@ -24,6 +24,7 @@ module.exports = {
background: 'var(--background)',
lineBackground: 'var(--lineBackground)',
foreground: 'var(--foreground)',
muted: 'var(--muted)',
caret: 'var(--caret)',
selection: 'var(--selection)',
selectionMatch: 'var(--selectionMatch)',
@ -46,28 +47,28 @@ module.exports = {
'code::after': {
content: 'none',
},
color: 'var(--foreground)',
color: 'var(--foreground) !important',
a: {
color: 'var(--foreground)',
color: 'var(--foreground) !important',
},
h1: {
color: 'var(--foreground)',
color: 'var(--foreground) !important',
},
h2: {
color: 'var(--foreground)',
color: 'var(--foreground) !important',
},
h3: {
color: 'var(--foreground)',
color: 'var(--foreground) !important',
},
h4: {
color: 'var(--foreground)',
color: 'var(--foreground) !important',
},
pre: {
color: 'var(--foreground)',
background: 'var(--background)',
color: 'var(--foreground) !important',
background: 'var(--background) !important',
},
code: {
color: 'var(--foreground)',
color: 'var(--foreground) !important',
},
},
},