Skip to content

Commit

Permalink
Updating variables
Browse files Browse the repository at this point in the history
  • Loading branch information
gjones committed Nov 15, 2024
1 parent 3c50791 commit ee07777
Show file tree
Hide file tree
Showing 5 changed files with 580 additions and 336 deletions.
73 changes: 69 additions & 4 deletions src/styles/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2987,12 +2987,32 @@
"chart": {
"bars": {
"color": {
"green": string,
"blue": string,
"orange": string,
"green": string,
"fuchsia": string,
"yellow": string,
"violet": string,
"babyblue": string,
"red": string,
"teal": string,
"sunrise": string,
"slate": string
}
},
"color": {
"default": {
"blue": string,
"orange": string,
"green": string,
"fuchsia": string,
"yellow": string,
"violet": string,
"teal": string
"babyblue": string,
"red": string,
"teal": string,
"sunrise": string,
"slate": string
}
}
}
Expand Down Expand Up @@ -3093,12 +3113,32 @@
},
"chart": {
"bars": {
"green": string,
"blue": string,
"orange": string,
"green": string,
"fuchsia": string,
"yellow": string,
"violet": string,
"babyblue": string,
"danger": string,
"teal": string,
"sunrise": string,
"slate": string,
"red": string
},
"default": {
"blue": string,
"orange": string,
"green": string,
"fuchsia": string,
"yellow": string,
"violet": string,
"teal": string
"babyblue": string,
"danger": string,
"teal": string,
"sunrise": string,
"slate": string,
"red": string
}
},
"iconButton": {
Expand Down Expand Up @@ -3127,6 +3167,7 @@
"600": string,
"700": string,
"800": string,
"900": string,
"base": string
},
"neutral": {
Expand Down Expand Up @@ -3275,6 +3316,30 @@
"800": string,
"850": string,
"900": string
},
"sunrise": {
"50": string,
"100": string,
"200": string,
"300": string,
"400": string,
"500": string,
"600": string,
"700": string,
"800": string,
"900": string
},
"babyblue": {
"50": string,
"100": string,
"200": string,
"300": string,
"400": string,
"500": string,
"600": string,
"700": string,
"800": string,
"900": string
}
},
"sizes": {
Expand Down
90 changes: 64 additions & 26 deletions src/styles/variables.classic.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,19 +164,19 @@
},
"info": {
"background": {
"default": "rgb(7.45% 35.7% 90.2% / 0.1)",
"hover": "#b5cdf9",
"active": "#91b3f6"
"default": "rgb(26.3% 49.4% 93.7% / 0.1)",
"hover": "#D0DFFB",
"active": "#A1BEF7"
},
"text": {
"default": "#135be6",
"hover": "#135be6",
"active": "#135be6"
"default": "#437EEF",
"hover": "#437EEF",
"active": "#437EEF"
},
"stroke": {
"default": "rgb(7.45% 35.7% 90.2% / 0.1)",
"hover": "#b5cdf9",
"active": "#91b3f6"
"default": "rgb(26.3% 49.4% 93.7% / 0.1)",
"hover": "#D0DFFB",
"active": "#A1BEF7"
}
}
}
Expand Down Expand Up @@ -832,12 +832,32 @@
"chart": {
"bars": {
"color": {
"green": "#00FF15",
"blue": "#6c9af3",
"fuchsia": "#FB64D6",
"orange": "#ffb864",
"violet": "#CC66FF",
"teal": "#00CCAA"
"blue": "#437EEF",
"orange": "#FF7729",
"green": "#00E513",
"fuchsia": "#FB32C9",
"yellow": "#eef400",
"violet": "#BB33FF",
"babyblue": "#00CBEB",
"red": "#ff2323",
"teal": "#089B83",
"sunrise": "#FFC300",
"slate": "#9a9ea7"
}
},
"color": {
"default": {
"blue": "#437EEF",
"orange": "#FF7729",
"green": "#00E513",
"fuchsia": "#FB32C9",
"yellow": "#eef400",
"violet": "#BB33FF",
"babyblue": "#00CBEB",
"red": "#ff2323",
"teal": "#089B83",
"sunrise": "#FFC300",
"slate": "#9a9ea7"
}
}
}
Expand Down Expand Up @@ -876,16 +896,16 @@
},
"feedback": {
"info": {
"background": "#dae6fc",
"foreground": "#135be6"
"background": "#E7EFFD",
"foreground": "#437EEF"
},
"success": {
"background": "#E5FFE8",
"foreground": "#00990D"
"foreground": "#008A0B"
},
"warning": {
"background": "#ffedd8",
"foreground": "#9e5600"
"background": "#FFE2D1",
"foreground": "#A33C00"
},
"danger": {
"background": "#ffdddd",
Expand All @@ -899,12 +919,30 @@
},
"chart": {
"bars": {
"green": "#00FF15",
"blue": "#6c9af3",
"fuchsia": "#FB64D6",
"orange": "#ffb864",
"violet": "#CC66FF",
"teal": "#00CCAA"
"blue": "#437EEF",
"orange": "#FF7729",
"green": "#00E513",
"fuchsia": "#FB32C9",
"yellow": "#eef400",
"violet": "#BB33FF",
"babyblue": "#00CBEB",
"teal": "#089B83",
"sunrise": "#FFC300",
"slate": "#9a9ea7",
"red": "#ff2323"
},
"default": {
"blue": "#437EEF",
"orange": "#FF7729",
"green": "#00E513",
"fuchsia": "#FB32C9",
"yellow": "#eef400",
"violet": "#BB33FF",
"babyblue": "#00CBEB",
"teal": "#089B83",
"sunrise": "#FFC300",
"slate": "#9a9ea7",
"red": "#ff2323"
}
},
"iconButton": {
Expand Down
Loading

0 comments on commit ee07777

Please sign in to comment.