Skip to content

Commit

Permalink
feat: color detail
Browse files Browse the repository at this point in the history
  • Loading branch information
wiidede committed Jun 16, 2023
1 parent 99c0373 commit ca4fd8d
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 32 deletions.
8 changes: 4 additions & 4 deletions src/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ export const ThemesColors = {

comment: ['#9D9994', '#BDB4AA'],
string: ['#F1F0B0', '#FF9E03'],
variable: ['#FFA7D1', '#FF7DBB'],
variable: ['#FFA7D1', '#FF66AF'],
keyword: ['#78E6D0', '#00BA95'],
number: ['#FFAD93', '#FF9C7D'],
boolean: ['#FFBBA4', '#FFBBA4'],
operator: ['#F686E1', '#F65BD9'],
function: ['#29C0E7', '#30D5FF'],
constant: ['#ADF29C', '#73F054'],
function: ['#29C0E7', '#00CBFF'],
constant: ['#ADF29C', '#29CC00'],
class: ['#8A69D4', '#8A69D4'],
interface: ['#B29EE7', '#815AE7'],
type: ['#53CFBA', '#1A9984'],
builtin: ['#19C2A9', '#00EBC8'],
builtin: ['#19C2A9', '#00C9AB'],
property: ['#BDF4AA', '#38D900'],
namespace: ['#FFC7CE', '#AB858A'],
punctuation: ['#C4D5C6', '#6BB373'],
Expand Down
2 changes: 2 additions & 0 deletions src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,9 @@ export default function getTheme({ style, name, soft = false, black = false }) {

'gitDecoration.addedResourceForeground': themeColor('green'),
'gitDecoration.modifiedResourceForeground': themeColor('blue'),
'gitDecoration.stageModifiedResourceForeground': themeColor('yellow'),
'gitDecoration.deletedResourceForeground': themeColor('red'),
'gitDecoration.stageDeletedResourceForeground': themeColor('magenta'),
'gitDecoration.untrackedResourceForeground': themeColor('cyan'),
'gitDecoration.ignoredResourceForeground': themeColor('ignored'),
'gitDecoration.conflictingResourceForeground': themeColor('orange'),
Expand Down
58 changes: 30 additions & 28 deletions themes/liquid-ray-light.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@
"terminal.ansiYellow": "#BDAA00",
"gitDecoration.addedResourceForeground": "#44D62C",
"gitDecoration.modifiedResourceForeground": "#00BFFF",
"gitDecoration.stageModifiedResourceForeground": "#BDAA00",
"gitDecoration.deletedResourceForeground": "#FF7477",
"gitDecoration.stageDeletedResourceForeground": "#FF2BD3",
"gitDecoration.untrackedResourceForeground": "#00B796",
"gitDecoration.ignoredResourceForeground": "#393a3450",
"gitDecoration.conflictingResourceForeground": "#E87600",
Expand Down Expand Up @@ -256,7 +258,7 @@
"meta.definition.variable"
],
"settings": {
"foreground": "#73F054"
"foreground": "#29CC00"
}
},
{
Expand All @@ -265,7 +267,7 @@
"entity.name"
],
"settings": {
"foreground": "#30D5FF"
"foreground": "#00CBFF"
}
},
{
Expand All @@ -286,7 +288,7 @@
{
"scope": "entity.name.function",
"settings": {
"foreground": "#30D5FF"
"foreground": "#00CBFF"
}
},
{
Expand All @@ -307,7 +309,7 @@
"constant.language.null"
],
"settings": {
"foreground": "#00EBC8"
"foreground": "#00C9AB"
}
},
{
Expand Down Expand Up @@ -363,7 +365,7 @@
"invalid.deprecated.entity.other.attribute-name.html"
],
"settings": {
"foreground": "#FF7DBB"
"foreground": "#FF66AF"
}
},
{
Expand All @@ -372,7 +374,7 @@
"identifier"
],
"settings": {
"foreground": "#FF7DBB"
"foreground": "#FF66AF"
}
},
{
Expand Down Expand Up @@ -485,7 +487,7 @@
"support.constant"
],
"settings": {
"foreground": "#73F054"
"foreground": "#29CC00"
}
},
{
Expand All @@ -502,7 +504,7 @@
"keyword.other.unit"
],
"settings": {
"foreground": "#00EBC8"
"foreground": "#00C9AB"
}
},
{
Expand Down Expand Up @@ -682,7 +684,7 @@
"entity.other.attribute-name.html.vue"
],
"settings": {
"foreground": "#30D5FF"
"foreground": "#00CBFF"
}
},
{
Expand Down Expand Up @@ -773,27 +775,27 @@
},
{
"token": "constant",
"foreground": "73F054"
"foreground": "29CC00"
},
{
"token": "entity.name.constant",
"foreground": "73F054"
"foreground": "29CC00"
},
{
"token": "variable.language",
"foreground": "73F054"
"foreground": "29CC00"
},
{
"token": "meta.definition.variable",
"foreground": "73F054"
"foreground": "29CC00"
},
{
"token": "entity",
"foreground": "30D5FF"
"foreground": "00CBFF"
},
{
"token": "entity.name",
"foreground": "30D5FF"
"foreground": "00CBFF"
},
{
"token": "variable.parameter.function",
Expand All @@ -809,7 +811,7 @@
},
{
"token": "entity.name.function",
"foreground": "30D5FF"
"foreground": "00CBFF"
},
{
"token": "keyword",
Expand All @@ -821,23 +823,23 @@
},
{
"token": "storage",
"foreground": "00EBC8"
"foreground": "00C9AB"
},
{
"token": "storage.type",
"foreground": "00EBC8"
"foreground": "00C9AB"
},
{
"token": "support.type.builtin",
"foreground": "00EBC8"
"foreground": "00C9AB"
},
{
"token": "constant.language.undefined",
"foreground": "00EBC8"
"foreground": "00C9AB"
},
{
"token": "constant.language.null",
"foreground": "00EBC8"
"foreground": "00C9AB"
},
{
"token": "storage.modifier.package",
Expand Down Expand Up @@ -897,19 +899,19 @@
},
{
"token": "entity.other.attribute-name",
"foreground": "FF7DBB"
"foreground": "FF66AF"
},
{
"token": "invalid.deprecated.entity.other.attribute-name.html",
"foreground": "FF7DBB"
"foreground": "FF66AF"
},
{
"token": "variable",
"foreground": "FF7DBB"
"foreground": "FF66AF"
},
{
"token": "identifier",
"foreground": "FF7DBB"
"foreground": "FF66AF"
},
{
"token": "support.type.primitive",
Expand Down Expand Up @@ -993,7 +995,7 @@
},
{
"token": "support.constant",
"foreground": "73F054"
"foreground": "29CC00"
},
{
"token": "constant.numeric",
Expand All @@ -1005,7 +1007,7 @@
},
{
"token": "keyword.other.unit",
"foreground": "00EBC8"
"foreground": "00C9AB"
},
{
"token": "constant.language.boolean",
Expand Down Expand Up @@ -1157,7 +1159,7 @@
},
{
"token": "entity.other.attribute-name.html.vue",
"foreground": "30D5FF"
"foreground": "00CBFF"
},
{
"token": "invalid.illegal.unrecognized-tag.html"
Expand Down
2 changes: 2 additions & 0 deletions themes/liquid-ray-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@
"terminal.ansiYellow": "#FFE900",
"gitDecoration.addedResourceForeground": "#44D62C",
"gitDecoration.modifiedResourceForeground": "#009ACE",
"gitDecoration.stageModifiedResourceForeground": "#FFE900",
"gitDecoration.deletedResourceForeground": "#FF7276",
"gitDecoration.stageDeletedResourceForeground": "#EA27C2",
"gitDecoration.untrackedResourceForeground": "#00B796",
"gitDecoration.ignoredResourceForeground": "#E4E2DC30",
"gitDecoration.conflictingResourceForeground": "#FFAA4D",
Expand Down

0 comments on commit ca4fd8d

Please sign in to comment.