Skip to content

Commit

Permalink
Set "attribute" semantic token for Python to violet
Browse files Browse the repository at this point in the history
  • Loading branch information
santoso-wijaya committed Feb 12, 2025
1 parent ab9422f commit 5389f94
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Change Log

## 0.3.18 | TODO
## 0.3.18 | 2025-02-11

* Tweak statement highlights.
* Set "property" semantic token for Python to violet.

## 0.3.17 | 2024-06-16

Expand Down
5 changes: 4 additions & 1 deletion themes/Selenized_Dark-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,10 @@
"*.attribute:rust": "#adbcbc",
"derive.library:rust": "#f38649",
"deriveHelper.library:rust": "#f38649",
"string.attribute:rust": "#39c7b9"
"string.attribute:rust": "#39c7b9",

//Python
"property:python": "#a58cec"
}

}
Expand Down
5 changes: 4 additions & 1 deletion themes/Selenized_Light-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,10 @@
"*.attribute:rust": "#52666d",
"derive.library:rust": "#c75d20",
"deriveHelper.library:rust": "#c75d20",
"string.attribute:rust": "#009c8f"
"string.attribute:rust": "#009c8f",

//Python
"property:python": "#7d64c5"
}

}
Expand Down
5 changes: 4 additions & 1 deletion themes/Solarized_Dark-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,10 @@
"*.attribute:rust": "#829496",
"derive.library:rust": "#cf4b15",
"deriveHelper.library:rust": "#cf4b15",
"string.attribute:rust": "#1fa198"
"string.attribute:rust": "#1fa198",

//Python
"property:python": "#5c73c4"
}

}
Expand Down
5 changes: 4 additions & 1 deletion themes/Solarized_Light-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,10 @@
"*.attribute:rust": "#637b82",
"derive.library:rust": "#cf4b15",
"deriveHelper.library:rust": "#cf4b15",
"string.attribute:rust": "#1fa198"
"string.attribute:rust": "#1fa198",

//Python
"property:python": "#5c73c4"
}

}
Expand Down
5 changes: 4 additions & 1 deletion themes/common/semantic-token-colors.json.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,8 @@
"*.attribute:rust": "#{{ fg_0 }}",
"derive.library:rust": "#{{ orange }}",
"deriveHelper.library:rust": "#{{ orange }}",
"string.attribute:rust": "#{{ cyan }}"
"string.attribute:rust": "#{{ cyan }}",

//Python
"property:python": "#{{ violet }}"
}

0 comments on commit 5389f94

Please sign in to comment.