Skip to content

Commit

Permalink
Merge pull request #1840 from starknet-io/feature/tutorials-badge-color
Browse files Browse the repository at this point in the history
Add color to Tutorials category badge
  • Loading branch information
nuno-aac authored Dec 19, 2023
2 parents d7248a4 + 55d34d9 commit 1e34a2c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
5 changes: 5 additions & 0 deletions workspaces/website/src/components/Badge/BadgeStyles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ const community_calls = defineStyle({
background: "badge-community-calls-bg",
color: "badge-community-calls-fg",
});
const tutorials_and_guides = defineStyle({
background: "badge-tutorials-and-guides-bg",
color: "badge-tutorials-and-guides-fg",
});
const stark_math = defineStyle({
background: "badge-stark-math-bg",
color: "badge-stark-math-fg",
Expand Down Expand Up @@ -59,6 +63,7 @@ export const badgeTheme = defineStyleConfig({
variants: {
developers,
community_calls,
tutorials_and_guides,
stark_math,
stark_struck_podcast,
stark_at_home,
Expand Down
12 changes: 12 additions & 0 deletions workspaces/website/src/style/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ export const tokens = {
"badge-engineering-fg": "#991B1B",
"badge-community-calls-bg": "#FEF3C7",
"badge-community-calls-fg": "#92400E",
"badge-tutorials-and-guides-bg": "#FBF2B1",
"badge-tutorials-and-guides-fg": "#8B7710",
"badge-stark-math-bg": "#DBEAFE",
"badge-stark-math-fg": "#1E40AF",
"badge-governance-bg": "#EDE9FE",
Expand Down Expand Up @@ -340,6 +342,8 @@ export const tokens = {
"badge-engineering-fg": "#991B1B",
"badge-community-calls-bg": "#FEF3C7",
"badge-community-calls-fg": "#92400E",
"badge-tutorials-and-guides-bg": "#FBF2B1",
"badge-tutorials-and-guides-fg": "#8B7710",
"badge-stark-math-bg": "#DBEAFE",
"badge-stark-math-fg": "#1E40AF",
"badge-governance-bg": "#EDE9FE",
Expand Down Expand Up @@ -946,6 +950,14 @@ export const semanticTokens = {
default: tokens.colors.light["badge-community-calls-fg"],
_dark: tokens.colors.dark["badge-community-calls-fg"],
},
"badge-tutorials-and-guides-bg": {
default: tokens.colors.light["badge-tutorials-and-guides-bg"],
_dark: tokens.colors.dark["badge-tutorials-and-guides-bg"],
},
"badge-tutorials-and-guides-fg": {
default: tokens.colors.light["badge-tutorials-and-guides-fg"],
_dark: tokens.colors.dark["badge-tutorials-and-guides-fg"],
},
"badge-stark-math-bg": {
default: tokens.colors.light["badge-stark-math-bg"],
_dark: tokens.colors.dark["badge-stark-math-bg"],
Expand Down

0 comments on commit 1e34a2c

Please sign in to comment.