-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8709 task: design token prototyping (WIP)
* initial work with using design tokens and style dictionary to output css variables for styling and js modules for documentation
- Loading branch information
1 parent
9510258
commit c524c72
Showing
8 changed files
with
113 additions
and
14 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
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,90 @@ | ||
/** | ||
* Do not edit directly | ||
* Generated on Fri, 09 Jul 2021 15:05:58 GMT | ||
*/ | ||
|
||
export const ColourBlack : string; | ||
export const ColourBlackRgb : string; | ||
export const ColourWhite : string; | ||
export const ColourWhiteRgb : string; | ||
export const ColourAmber10 : string; | ||
export const ColourAmber20 : string; | ||
export const ColourAmber30 : string; | ||
export const ColourAmber40 : string; | ||
export const ColourAmber50 : string; | ||
export const ColourAmber60 : string; | ||
export const ColourAmber70 : string; | ||
export const ColourAmber80 : string; | ||
export const ColourAmber90 : string; | ||
export const ColourAmber05 : string; | ||
export const ColourBlue10 : string; | ||
export const ColourBlue20 : string; | ||
export const ColourBlue30 : string; | ||
export const ColourBlue40 : string; | ||
export const ColourBlue50 : string; | ||
export const ColourBlue60 : string; | ||
export const ColourBlue70 : string; | ||
export const ColourBlue80 : string; | ||
export const ColourBlue90 : string; | ||
export const ColourBlue05 : string; | ||
export const ColourCyan10 : string; | ||
export const ColourCyan20 : string; | ||
export const ColourCyan30 : string; | ||
export const ColourCyan40 : string; | ||
export const ColourCyan50 : string; | ||
export const ColourCyan60 : string; | ||
export const ColourCyan70 : string; | ||
export const ColourCyan80 : string; | ||
export const ColourCyan90 : string; | ||
export const ColourCyan05 : string; | ||
export const ColourGreen10 : string; | ||
export const ColourGreen20 : string; | ||
export const ColourGreen30 : string; | ||
export const ColourGreen40 : string; | ||
export const ColourGreen50 : string; | ||
export const ColourGreen60 : string; | ||
export const ColourGreen70 : string; | ||
export const ColourGreen80 : string; | ||
export const ColourGreen90 : string; | ||
export const ColourGreen05 : string; | ||
export const ColourGrey10 : string; | ||
export const ColourGrey20 : string; | ||
export const ColourGrey30 : string; | ||
export const ColourGrey40 : string; | ||
export const ColourGrey50 : string; | ||
export const ColourGrey60 : string; | ||
export const ColourGrey70 : string; | ||
export const ColourGrey80 : string; | ||
export const ColourGrey90 : string; | ||
export const ColourGrey60Rgb : string; | ||
export const ColourGrey05 : string; | ||
export const ColourOrange10 : string; | ||
export const ColourOrange20 : string; | ||
export const ColourOrange30 : string; | ||
export const ColourOrange40 : string; | ||
export const ColourOrange50 : string; | ||
export const ColourOrange60 : string; | ||
export const ColourOrange70 : string; | ||
export const ColourOrange80 : string; | ||
export const ColourOrange90 : string; | ||
export const ColourOrange05 : string; | ||
export const ColourRed10 : string; | ||
export const ColourRed20 : string; | ||
export const ColourRed30 : string; | ||
export const ColourRed40 : string; | ||
export const ColourRed50 : string; | ||
export const ColourRed60 : string; | ||
export const ColourRed70 : string; | ||
export const ColourRed80 : string; | ||
export const ColourRed90 : string; | ||
export const ColourRed05 : string; | ||
export const ColourYellow10 : string; | ||
export const ColourYellow20 : string; | ||
export const ColourYellow30 : string; | ||
export const ColourYellow40 : string; | ||
export const ColourYellow50 : string; | ||
export const ColourYellow60 : string; | ||
export const ColourYellow70 : string; | ||
export const ColourYellow80 : string; | ||
export const ColourYellow90 : string; | ||
export const ColourYellow05 : string; |
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 |
---|---|---|
@@ -1,13 +1,9 @@ | ||
import { ArgsTable, Canvas, Meta, Story } from '@storybook/addon-docs/blocks'; | ||
|
||
import { ColoursPaletteStatus, ColourVariables } from './Colours.stories'; | ||
import colourTokens from '../../build/js/colours'; | ||
import { ColourVariables } from './Colours.stories'; | ||
|
||
<Meta title={`Global/Colours`} /> | ||
|
||
# Colour palette | ||
|
||
<ColourVariables tokens={colourTokens} /> | ||
|
||
<ColoursPaletteStatus /> | ||
|
||
<ColourVariables /> |
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