aboutsummaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorfenze <contact@fenze.dev>2022-11-14 21:41:43 +0100
committerfenze <contact@fenze.dev>2022-11-14 21:41:43 +0100
commita45d1c70f58586fed97df70650e5d066b73d0a0d (patch)
tree565319b3d953e6a88eb6f02b79da77ca4f59c13c /style.css
Initial commit
Diffstat (limited to 'style.css')
-rw-r--r--style.css37
1 files changed, 37 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..45805d7
--- /dev/null
+++ b/style.css
@@ -0,0 +1,37 @@
+@define-color Surface0 #313244;
+@define-color Surface1 #45475a;
+@define-color Base #1e1e2e;
+@define-color Mantle #181825;
+@define-color Lavender #b4befe;
+@define-color Text #cdd6f4;
+
+* {
+ padding: 0px;
+ margin: 0px;
+ outline-color: @Lavender;
+ color: @Text;
+ border-bottom-color: @Base;
+}
+
+window, notebook, headerbar {
+ background: @Base;
+}
+
+tabs {
+ background-color: @Base;
+ padding: 3px;
+}
+
+tab {
+ background-color: @Base;
+ margin: 5px;
+}
+
+entry {
+ background-color: @Surface0;
+ padding-left: 10px;
+}
+
+entry:focus {
+ box-shadow: none;
+}