Skip to content

Commit 8f61fa4

Browse files
committed
add boolean and number tokens to themes
1 parent 0693140 commit 8f61fa4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+345
-3
lines changed

src/Themes/Css/andromeeda.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ pre, code {
2727
color: #96E072;
2828
}
2929

30+
.hl-boolean {
31+
color: #000;
32+
}
33+
34+
.hl-number {
35+
color: #000;
36+
}
37+
3038
.hl-variable {
3139
color: #00e8c6;
3240
}

src/Themes/Css/aurora-x.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ pre, code {
2727
color: #C3E88D;
2828
}
2929

30+
.hl-boolean {
31+
color: #000;
32+
}
33+
34+
.hl-number {
35+
color: #F78C6C;
36+
}
37+
3038
.hl-variable {
3139
color: #EEFFFF;
3240
}

src/Themes/Css/ayu-dark.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ pre, code {
2727
color: #aad94c;
2828
}
2929

30+
.hl-boolean {
31+
color: #000;
32+
}
33+
34+
.hl-number {
35+
color: #d2a6ff;
36+
}
37+
3038
.hl-variable {
3139
color: #bfbdb6;
3240
}

src/Themes/Css/catppuccin-frappe.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ pre, code {
2727
color: #a6d189;
2828
}
2929

30+
.hl-boolean {
31+
color: #000;
32+
}
33+
34+
.hl-number {
35+
color: #ef9f76;
36+
}
37+
3038
.hl-variable {
3139
color: #000;
3240
}

src/Themes/Css/catppuccin-latte.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ pre, code {
2727
color: #40a02b;
2828
}
2929

30+
.hl-boolean {
31+
color: #000;
32+
}
33+
34+
.hl-number {
35+
color: #fe640b;
36+
}
37+
3038
.hl-variable {
3139
color: #000;
3240
}

src/Themes/Css/catppuccin-macchiato.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ pre, code {
2727
color: #a6da95;
2828
}
2929

30+
.hl-boolean {
31+
color: #000;
32+
}
33+
34+
.hl-number {
35+
color: #f5a97f;
36+
}
37+
3038
.hl-variable {
3139
color: #000;
3240
}

src/Themes/Css/catppuccin-mocha.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ pre, code {
2727
color: #a6e3a1;
2828
}
2929

30+
.hl-boolean {
31+
color: #000;
32+
}
33+
34+
.hl-number {
35+
color: #fab387;
36+
}
37+
3038
.hl-variable {
3139
color: #000;
3240
}

src/Themes/Css/dark-plus.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ pre, code {
2727
color: #ce9178;
2828
}
2929

30+
.hl-boolean {
31+
color: #000;
32+
}
33+
34+
.hl-number {
35+
color: #b5cea8;
36+
}
37+
3038
.hl-variable {
3139
color: #9CDCFE;
3240
}

src/Themes/Css/dracula-soft.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ pre, code {
2727
color: #e7ee98;
2828
}
2929

30+
.hl-boolean {
31+
color: #000;
32+
}
33+
34+
.hl-number {
35+
color: #000;
36+
}
37+
3038
.hl-variable {
3139
color: #f6f6f4;
3240
}

src/Themes/Css/dracula.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ pre, code {
2727
color: #F1FA8C;
2828
}
2929

30+
.hl-boolean {
31+
color: #000;
32+
}
33+
34+
.hl-number {
35+
color: #000;
36+
}
37+
3038
.hl-variable {
3139
color: #F8F8F2;
3240
}

0 commit comments

Comments
 (0)