Skip to content

Commit acad35a

Browse files
authored
Merge pull request #127 from geisi/add-boolean-and-number-token-to-themes
Add boolean and number tokens to themes
2 parents 0693140 + dfbc84b commit acad35a

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

+344
-2
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: #96E072;
32+
}
33+
34+
.hl-number {
35+
color: #96E072;
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: #C3E88D;
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: #aad94c;
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: #a6d189;
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: #40a02b;
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: #a6da95;
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: #a6e3a1;
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: #ce9178;
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: #e7ee98;
32+
}
33+
34+
.hl-number {
35+
color: #e7ee98;
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: #F1FA8C;
32+
}
33+
34+
.hl-number {
35+
color: #F1FA8C;
36+
}
37+
3038
.hl-variable {
3139
color: #F8F8F2;
3240
}

0 commit comments

Comments
 (0)