feat(themes): add pinkie theme, fix editor inside neogothic theme, add .idea to gitignore

This commit is contained in:
h
2025-11-25 23:57:36 +01:00
parent 804fddcc9c
commit 41ce6895c6
4 changed files with 360 additions and 2 deletions

View File

@@ -238,7 +238,7 @@ h1, h2, h3, h4, h5, h6, .ui.header {
.ui.segment.code-view, .view-code, pre, code, .chroma {
background-color: var(--color-code-bg) !important;
color: #bcbec4 !important;
border: 1px solid var(--color-border-secondary);
border: 0px !important;
}
.lines-num {
@@ -246,6 +246,38 @@ h1, h2, h3, h4, h5, h6, .ui.header {
color: var(--color-editor-line-number) !important;
}
.file-view.code-view table,
.file-view.code-view tbody,
.file-view.code-view tr {
background: transparent !important;
background-color: transparent !important;
border-collapse: collapse !important;
border-spacing: 0 !important;
border: 0 !important;
border-bottom: 0 !important;
border-bottom-color: transparent !important;
}
.file-view.code-view .lines-num,
td.lines-num {
background: var(--color-code-sidebar-bg) !important;
background-color: var(--color-code-sidebar-bg) !important;
}
.file-view.code-view .lines-code,
.file-view.code-view .lines-code.chroma,
td.lines-code,
td.lines-code.chroma {
background: var(--color-code-bg) !important;
background-color: var(--color-code-bg) !important;
}
.lines-code.chroma span,
.chroma span {
background: transparent !important;
background-color: transparent !important;
}
.chroma .k, .chroma .kd, .chroma .kn, .chroma .kp, .chroma .kr, .chroma .kt { color: #cf8e6d !important; }
.chroma .s, .chroma .s1, .chroma .s2, .chroma .sb, .chroma .sc { color: #6aab73 !important; }
.chroma .sd { color: #5f826b !important; font-style: italic; }