This commit is contained in:
SpookyDervish
2025-10-26 13:09:17 +11:00
parent fb0a8aa60b
commit 75c9806b79
2 changed files with 89 additions and 89 deletions

75
assets/style.tcss Normal file
View File

@@ -0,0 +1,75 @@
#sidebar {
background: $boost-darken-1;
width: 15%;
min-width: 20;
dock: left;
margin-top: 1;
}
#sidebar-buttons {
padding: 1;
padding-bottom: 0;
background: $boost-darken-1;
border-bottom: tall $surface;
Button {
max-width: 5;
margin-right: 1;
}
}
ContentSwitcher Vertical {
padding: 1;
Static {
margin-bottom: 1;
text-style: dim;
}
}
#files {
#directory {
background: transparent;
}
}
#editor {
margin-top: 1;
#code-editor {
min-height: 3;
}
}
#console-container {
padding-top: 1;
margin: 1;
border-top: tall $boost;
height: 35%;
min-height: 12;
#console {
border: tall $boost;
margin-bottom: 1;
}
}
#find-window {
width: 45;
height: 11;
Input {
width: 20;
margin-bottom: 1;
}
#num-matches {
width: 10;
margin-left: 1;
height: 3;
content-align: left middle;
}
Button {
max-width: 5;
}
}

16
assets/theme_mappings.py Normal file
View File

@@ -0,0 +1,16 @@
theme_mappings = {
"py": "python",
"json": "json",
"tcss": "css",
"css": "css",
"html": "html",
"htm": "html",
"rs": "rust",
"js": "javascript",
"xml": "xml",
"toml": "toml",
"go": "go",
"sh": "bash",
"yaml": "yaml",
"md": "markdown"
}