Skip to content
Closed
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
2 changes: 2 additions & 0 deletions src/constants/customizations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export const FONTS = {
display: { value: 'Raleway, ui-sans-serif, system-ui, sans-serif' },
heading: { value: 'Inter, ui-sans-serif, system-ui, sans-serif' },
mono: { value: 'Space Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace' },
metric: { value: 'Space Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace' },
};

export const FONT_SIZES = {
Expand Down Expand Up @@ -40,6 +41,7 @@ export const LINE_HEIGHTS = {

export const COLORS = {
black: { value: '#121212' },
forestgreen: { value: '#032b1a' },
primary: {
50: { value: '#f3f6f5' },
100: { value: '#f2fcf7' },
Expand Down
1 change: 1 addition & 0 deletions src/stories/tokens/Colors.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export const Colors = () => (
<ColorRow colorToken="transparent" />
<ColorRow colorToken="black" />
<ColorRow colorToken="white" />
<ColorRow colorToken="forestgreen" />
{COLOR_PALETTES.map((color) =>
colorWeights.map((weight) => <ColorRow colorToken={`${color}.${weight}`} />)
)}
Expand Down
1 change: 1 addition & 0 deletions src/types/ColorsCustomization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ interface ColorScale {

interface ColorsCustomization {
black?: ColorToken;
forestgreen?: ColorToken;
primary?: ColorScale;
gray?: ColorScale;
red?: ColorScale;
Expand Down
1 change: 1 addition & 0 deletions src/types/FontsCustomization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ interface FontsCustomization {
display?: { value: string };
heading?: { value: string };
mono?: { value: string };
metric?: { value: string };
}

export default FontsCustomization;