Adjust codemirror gutter background color (#17018)

This commit is contained in:
Philip Allgaier 2023-06-26 09:58:59 +02:00 committed by GitHub
parent 1645208f62
commit 152ca75499
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -180,7 +180,7 @@ export const haTheme = EditorView.theme({
".cm-gutters": {
backgroundColor:
"var(--code-editor-gutter-color, var(--mdc-text-field-fill-color, whitesmoke))",
"var(--code-editor-gutter-color, var(--secondary-background-color, whitesmoke))",
color: "var(--paper-dialog-color, var(--secondary-text-color))",
border: "none",
borderRight:

View File

@ -3,7 +3,7 @@ import { css } from "lit";
export const darkStyles = {
"primary-background-color": "#111111",
"card-background-color": "#1c1c1c",
"secondary-background-color": "#202020",
"secondary-background-color": "#282828",
"primary-text-color": "#e1e1e1",
"secondary-text-color": "#9b9b9b",
"disabled-text-color": "#6f6f6f",