mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
debugging closure -> MarkupNode
This commit is contained in:
parent
11417c0624
commit
03d9d41a7a
8 changed files with 103 additions and 37 deletions
|
@ -8,6 +8,7 @@ pub enum HighlightStyle {
|
|||
Operator, // =+-<>...
|
||||
String,
|
||||
FunctionName,
|
||||
FunctionArgName,
|
||||
Type,
|
||||
Bracket,
|
||||
Number,
|
||||
|
@ -27,6 +28,7 @@ pub fn default_highlight_map() -> HashMap<HighlightStyle, RgbaTup> {
|
|||
(Operator, colors::WHITE),
|
||||
(String, from_hsb(346, 65, 97)),
|
||||
(FunctionName, colors::WHITE),
|
||||
(FunctionArgName, colors::WHITE),
|
||||
(Type, colors::WHITE),
|
||||
(Bracket, from_hsb(347, 80, 100)),
|
||||
(Number, from_hsb(185, 50, 75)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue