summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2022-10-03 16:40:26 +0200
committerAram Drevekenin <aram@poor.dev>2022-10-03 16:40:26 +0200
commit03c13336cbf4a2765594adcda171fb77009c84ea (patch)
tree9c6e7c5f49b5d2482cbb023fa307d8b06df6092b
parenta1d785345a4cff720de7d982baadc6bac22e2215 (diff)
fix(tests): theme fixtures
-rw-r--r--zellij-utils/src/input/unit/fixtures/themes/dracula.kdl28
-rw-r--r--zellij-utils/src/input/unit/fixtures/themes/nord.kdl26
2 files changed, 29 insertions, 25 deletions
diff --git a/zellij-utils/src/input/unit/fixtures/themes/dracula.kdl b/zellij-utils/src/input/unit/fixtures/themes/dracula.kdl
index 2201b73ac..77a25f4b5 100644
--- a/zellij-utils/src/input/unit/fixtures/themes/dracula.kdl
+++ b/zellij-utils/src/input/unit/fixtures/themes/dracula.kdl
@@ -1,16 +1,18 @@
// Dracula Theme
-dracula {
- // From https://github.com/dracula/zellij
- bg 40 42 54
- red 255 85 85
- green 80 250 123
- yellow 241 250 140
- blue 98 114 164
- magenta 255 121 198
- orange 255 184 108
- fg 248 248 242
- cyan 139 233 253
- black 0 0 0
- white 255 255 255
+themes {
+ dracula {
+ // From https://github.com/dracula/zellij
+ bg 40 42 54
+ red 255 85 85
+ green 80 250 123
+ yellow 241 250 140
+ blue 98 114 164
+ magenta 255 121 198
+ orange 255 184 108
+ fg 248 248 242
+ cyan 139 233 253
+ black 0 0 0
+ white 255 255 255
+ }
}
diff --git a/zellij-utils/src/input/unit/fixtures/themes/nord.kdl b/zellij-utils/src/input/unit/fixtures/themes/nord.kdl
index 136b98399..361a21fd9 100644
--- a/zellij-utils/src/input/unit/fixtures/themes/nord.kdl
+++ b/zellij-utils/src/input/unit/fixtures/themes/nord.kdl
@@ -1,15 +1,17 @@
// Nord theme
-nord {
- fg 216 222 233 //#D8DEE9
- bg 46 52 64 //#2E3440
- black 59 66 82 //#3B4252
- red 191 97 106 //#BF616A
- green 163 190 140 //#A3BE8C
- yellow 235203139 //#EBCB8B
- blue 129 161 193 //#81A1C1
- magenta 180 142 173 //#B48EAD
- cyan 136 192 208 //#88C0D0
- white 229 233 240 //#E5E9F0
- orange 208 135 112 //#D08770
+themes {
+ nord {
+ fg 216 222 233 //#D8DEE9
+ bg 46 52 64 //#2E3440
+ black 59 66 82 //#3B4252
+ red 191 97 106 //#BF616A
+ green 163 190 140 //#A3BE8C
+ yellow 235203139 //#EBCB8B
+ blue 129 161 193 //#81A1C1
+ magenta 180 142 173 //#B48EAD
+ cyan 136 192 208 //#88C0D0
+ white 229 233 240 //#E5E9F0
+ orange 208 135 112 //#D08770
+ }
}