Skip to content

Commit 3e3a9e7

Browse files
authored
Merge pull request #92 from kanlac/main
Add gruvbox-light theme
2 parents 7055e72 + 1395ac2 commit 3e3a9e7

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

sqlit/domains/shell/app/themes.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"solarized-light",
2727
"catppuccin-latte",
2828
"rose-pine-dawn",
29+
"gruvbox-light",
2930
}
3031

3132
SQLIT_THEMES = [
@@ -72,6 +73,28 @@
7273
"input-selection-background": "#1565C0 25%",
7374
},
7475
),
76+
Theme(
77+
name="gruvbox-light",
78+
primary="#427B58",
79+
secondary="#B57614",
80+
accent="#427B58",
81+
warning="#AF3A03",
82+
error="#9D0006",
83+
success="#79740E",
84+
foreground="#3C3836",
85+
background="#FBF1C7",
86+
surface="#EBDBB2",
87+
panel="#D5C4A1",
88+
dark=False,
89+
variables={
90+
"border": "#BDAE93",
91+
"block-cursor-foreground": "#282828",
92+
"input-selection-background": "#68986640",
93+
"button-color-foreground": "#FBF1C7",
94+
"footer-background": "#EBDBB2",
95+
"footer-key-foreground": "#427B58",
96+
},
97+
),
7598
Theme(
7699
name="hackerman",
77100
primary="#00FF21",

sqlit/domains/shell/ui/screens/theme.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"sqlit-light": "Sqlit Light",
2020
"textual-light": "Textual Light",
2121
"solarized-light": "Solarized Light",
22+
"gruvbox-light": "Gruvbox Light",
2223
"catppuccin-latte": "Catppuccin Latte",
2324
"rose-pine-dawn": "Rose Pine Dawn",
2425
}

0 commit comments

Comments
 (0)