-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1435 from undp/issue-995-design-tokens
Issue 995 design tokens
- Loading branch information
Showing
14 changed files
with
1,096 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# name: Generate scss vars from figma tokens | ||
|
||
# on: | ||
# push: | ||
# branches: | ||
# - update-figma-tokens | ||
# paths: | ||
# - 'figma-tokens/input/**' | ||
|
||
# jobs: | ||
# build_tokens: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout code | ||
# uses: actions/checkout@v2 | ||
|
||
# # Configuring Node.js Environment | ||
# - name: Setup Node.js environment | ||
# uses: actions/setup-node@v2.4.0 | ||
|
||
# # Setting dependencies | ||
# - name: Install dependencies | ||
# run: npm ci | ||
|
||
# # Token conversion using token-transformer | ||
# - name: Transform Figma tokens | ||
# run: npx token-transformer figma-tokens/input/tokens.json figma-tokens/transformed-tokens/tokens-transformed.json | ||
|
||
# # Run script for Style Dictionary, convert JSON to SCSS | ||
# - name: Build Figma tokens to SCSS | ||
# run: npm run build-tokens | ||
|
||
# # Create or update the `update-figma-tokens` branch | ||
# - name: Create or update branch | ||
# run: | | ||
# git config user.name "github-actions[bot]" | ||
# git config user.email "github-actions[bot]@users.noreply.github.com" | ||
# # git fetch | ||
|
||
# git add figma-tokens/transformed-tokens/tokens-transformed.json | ||
# git add stories/assets/scss/figma-scss/_figma-variables.scss | ||
# git commit -m "Save changes in the branch" || echo "No changes to commit" | ||
|
||
# # Push changes to `update-figma-tokens` branch | ||
# - name: Push changes | ||
# run: | | ||
# git push origin ${{ github.ref_name }} || echo "No changes to push" | ||
|
||
# # Automatic pull request | ||
# - name: Create Pull Request | ||
# uses: peter-evans/create-pull-request@v5 | ||
# with: | ||
# token: ${{ secrets.GITHUB_TOKEN }} | ||
# branch: ${{ github.ref_name }} | ||
# base: develop # Target branch for the PR | ||
# commit-message: "build: update SCSS variables from Figma tokens" | ||
# title: "Update SCSS variables from Figma tokens" | ||
# body: "This PR updates SCSS variables based on the latest Figma tokens." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import StyleDictionary from 'style-dictionary'; | ||
|
||
const sd = new StyleDictionary('./figma-tokens/config/config.json'); | ||
await sd.buildAllPlatforms(); | ||
|
||
// | ||
|
||
// import StyleDictionary from 'style-dictionary'; | ||
|
||
// const config = { | ||
// source: ['../transformed-tokens/**/*.json'], | ||
// platforms: { | ||
// scss: { | ||
// transformGroup: 'scss', | ||
// buildPath: '../../stories/assets/scss/figma-scss/', | ||
// files: [ | ||
// { | ||
// destination: '_figma-variables.scss', | ||
// format: 'scss/variables', | ||
// }, | ||
// ], | ||
// }, | ||
// }, | ||
// }; | ||
|
||
// const sd = StyleDictionary.extend(config); | ||
// sd.buildAllPlatforms(); | ||
|
||
// | ||
|
||
// import {StyleDictionary} from 'style-dictionary-utils' | ||
|
||
// const myStyleDictionary = new StyleDictionary() | ||
|
||
// // when using style dictionary 4 you whave to await the extend method | ||
// const extendedSd = await myStyleDictionary.extend({ | ||
// "source": ["../transformed-tokens/**/*.json"], | ||
// "platforms": { | ||
// "scss": { | ||
// "transformGroup": "scss", | ||
// "buildPath": "../../stories/assets/scss/figma-scss/", | ||
// "files": [ | ||
// { | ||
// "destination": "_figma-variables.scss", | ||
// "format": "scss/variables" | ||
// } | ||
// ] | ||
// } | ||
// } | ||
// }); | ||
|
||
// extendedSd.buildAllPlatforms(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"source": ["./figma-tokens/transformed-tokens/**/*.json"], | ||
"platforms": { | ||
"scss": { | ||
"transformGroup": "scss", | ||
"buildPath": "./stories/assets/scss/figma-scss/", | ||
"files": [ | ||
{ | ||
"destination": "_figma-variables.scss", | ||
"format": "scss/variables" | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"global": { | ||
"white": { | ||
"value": "#ffffff", | ||
"type": "color" | ||
}, | ||
"red": { | ||
"value": "#ee402d", | ||
"type": "color" | ||
}, | ||
"black": { | ||
"value": "#000000", | ||
"type": "color" | ||
}, | ||
"yellow": { | ||
"value": "#ffeb00", | ||
"type": "color" | ||
}, | ||
"green": { | ||
"value": "#6de354;", | ||
"type": "color" | ||
}, | ||
"azure": { | ||
"value": "#60d4f2", | ||
"type": "color" | ||
} | ||
}, | ||
"$themes": [], | ||
"$metadata": { | ||
"tokenSetOrder": [ | ||
"global" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"black": { | ||
"value": "#000000", | ||
"type": "color" | ||
}, | ||
"white": { | ||
"value": "#ffffff", | ||
"type": "color" | ||
}, | ||
"yellow": { | ||
"value": "#ffeb00", | ||
"type": "color" | ||
}, | ||
"red": { | ||
"value": "#ee402d", | ||
"type": "color" | ||
}, | ||
"green": { | ||
"value": "#6de354;", | ||
"type": "color" | ||
}, | ||
"azure": { | ||
"value": "#60d4f2", | ||
"type": "color" | ||
}, | ||
"tokenSetOrder": { | ||
"0": { | ||
"value": "global", | ||
"type": "other" | ||
} | ||
} | ||
} |
Oops, something went wrong.