Skip to content

Commit 113b527

Browse files
committed
Update colour for responses
1 parent 0326ea8 commit 113b527

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/formatting/renderer.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ impl Render for Terminal {
9090
.color(owo_colors::Rgb(0xad, 0x7f, 0xa8))
9191
.bold()
9292
.to_string(),
93-
Syntax::Response => content // string.quoted.single.technique - #4e9a06 (green) bold
94-
.color(owo_colors::Rgb(78, 154, 6))
93+
Syntax::Response => content // string.quoted.single.technique
94+
.color(owo_colors::Rgb(0xf5, 0x79, 0x00))
9595
.bold()
9696
.to_string(),
9797
Syntax::Invocation => content // meta.function-call.technique
@@ -163,7 +163,7 @@ impl Render for Typst {
163163
Syntax::Section => markup("", &content),
164164
Syntax::String => markup("fill: rgb(0x4e, 0x9a, 0x06), weight: \"bold\"", &content),
165165
Syntax::Numeric => markup("fill: rgb(0xad, 0x7f, 0xa8), weight: \"bold\"", &content),
166-
Syntax::Response => markup("fill: red", &content),
166+
Syntax::Response => markup("fill: rgb(0xf5, 0x79, 0x00), weight: \"bold\"", &content),
167167
Syntax::Invocation => markup("fill: rgb(0x3b, 0x5d, 0x7d), weight: \"bold\"", &content),
168168
Syntax::Title => markup("weight: \"bold\"", &content),
169169
Syntax::Keyword => markup("fill: rgb(0x75, 0x50, 0x7b), weight: \"bold\"", &content),

0 commit comments

Comments
 (0)