summaryrefslogtreecommitdiffhomepage
path: root/internal/tui/styles/styles.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/tui/styles/styles.go')
-rw-r--r--internal/tui/styles/styles.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/internal/tui/styles/styles.go b/internal/tui/styles/styles.go
index 86ee36490..41863cf1b 100644
--- a/internal/tui/styles/styles.go
+++ b/internal/tui/styles/styles.go
@@ -16,6 +16,10 @@ var (
Dark: "#212121",
Light: "#212121",
}
+ BackgroundDim = lipgloss.AdaptiveColor{
+ Dark: "#2c2c2c",
+ Light: "#2c2c2c",
+ }
BackgroundDarker = lipgloss.AdaptiveColor{
Dark: "#181818",
Light: "#181818",
@@ -24,6 +28,25 @@ var (
Dark: "#4b4c5c",
Light: "#4b4c5c",
}
+
+ Forground = lipgloss.AdaptiveColor{
+ Dark: "#d3d3d3",
+ Light: "#d3d3d3",
+ }
+
+ ForgroundDim = lipgloss.AdaptiveColor{
+ Dark: "#737373",
+ Light: "#737373",
+ }
+
+ BaseStyle = lipgloss.NewStyle().
+ Background(Background).
+ Foreground(Forground)
+
+ PrimaryColor = lipgloss.AdaptiveColor{
+ Dark: "#fab283",
+ Light: "#fab283",
+ }
)
var (