Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scripts/build_themes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ STYLES_PATH=styles/src
TOKENS_PATH=$STYLES_PATH/.tokens

npx token-transformer --preserveRawValue $STYLES_PATH/tokens.json $TOKENS_PATH/main.json global,colors,core,main
npx token-transformer --preserveRawValue $STYLES_PATH/tokens.json $TOKENS_PATH/green.json global,colors,core,green-accent,main
npx token-transformer --preserveRawValue $STYLES_PATH/tokens.json $TOKENS_PATH/yellow.json global,colors,core,yellow-accent,main
npx token-transformer --preserveRawValue $STYLES_PATH/tokens.json $TOKENS_PATH/purple.json global,colors,core,purple-accent,main
npx token-transformer --preserveRawValue $STYLES_PATH/tokens.json $TOKENS_PATH/blue.json global,colors,core,blue-accent,main
Expand Down
2 changes: 1 addition & 1 deletion scripts/convert-tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import StyleDictionary from 'style-dictionary'
import dedent from 'ts-dedent'
import type { KebabCase } from 'type-fest'

const THEMES = ['main', 'blue', 'yellow', 'purple', 'red'] as const
const THEMES = ['main', 'blue', 'yellow', 'purple', 'red', 'green'] as const

const FONT_FAMILIES = {
'GT America Mono': '"GT America Mono", monospace',
Expand Down
Loading