-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82f78a0
commit d6006a6
Showing
3 changed files
with
241 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React from "react"; | ||
import { Meta, StoryFn } from "@storybook/react"; | ||
|
||
import { Flex, Text, View } from "@phoenix/components"; | ||
|
||
import { ThemeWrapper } from "./components/ThemeWrapper"; | ||
import { GLOBAL_COLORS } from "./constants/colorConstants"; | ||
|
||
const meta: Meta = { | ||
title: "Colors", | ||
}; | ||
|
||
export default meta; | ||
|
||
const Template: StoryFn = () => ( | ||
<ThemeWrapper> | ||
<Flex direction="row" wrap> | ||
{GLOBAL_COLORS.map((color) => ( | ||
<View | ||
backgroundColor={color} | ||
key={color} | ||
height={50} | ||
width={100} | ||
padding="size-50" | ||
> | ||
<Text size="XS">{color}</Text> | ||
</View> | ||
))} | ||
</Flex> | ||
</ThemeWrapper> | ||
); | ||
|
||
export const Default = Template.bind({}); |
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,206 @@ | ||
import { ColorValue } from "@phoenix/components/types"; | ||
|
||
export const GLOBAL_COLORS: ColorValue[] = [ | ||
"grey-50", | ||
"grey-75", | ||
"grey-100", | ||
"grey-200", | ||
"grey-300", | ||
"grey-400", | ||
"grey-500", | ||
"grey-600", | ||
"grey-700", | ||
"grey-800", | ||
"grey-900", | ||
"blue-100", | ||
"blue-200", | ||
"blue-300", | ||
"blue-400", | ||
"blue-500", | ||
"blue-600", | ||
"blue-700", | ||
"blue-800", | ||
"blue-900", | ||
"blue-1000", | ||
"blue-1100", | ||
"blue-1200", | ||
"blue-1300", | ||
"blue-1400", | ||
"red-100", | ||
"red-200", | ||
"red-300", | ||
"red-400", | ||
"red-500", | ||
"red-600", | ||
"red-700", | ||
"red-800", | ||
"red-900", | ||
"red-1000", | ||
"red-1100", | ||
"red-1200", | ||
"red-1300", | ||
"red-1400", | ||
"orange-100", | ||
"orange-200", | ||
"orange-300", | ||
"orange-400", | ||
"orange-500", | ||
"orange-600", | ||
"orange-700", | ||
"orange-800", | ||
"orange-900", | ||
"yellow-100", | ||
"yellow-200", | ||
"yellow-300", | ||
"yellow-400", | ||
"yellow-500", | ||
"yellow-600", | ||
"yellow-700", | ||
"yellow-800", | ||
"yellow-900", | ||
"yellow-1000", | ||
"yellow-1100", | ||
"yellow-1200", | ||
"yellow-1300", | ||
"yellow-1400", | ||
"green-100", | ||
"green-200", | ||
"green-300", | ||
"green-400", | ||
"green-500", | ||
"green-600", | ||
"green-700", | ||
"green-800", | ||
"green-900", | ||
"green-1000", | ||
"green-1100", | ||
"green-1200", | ||
"green-1300", | ||
"green-1400", | ||
"celery-100", | ||
"celery-200", | ||
"celery-300", | ||
"celery-400", | ||
"celery-500", | ||
"celery-600", | ||
"celery-700", | ||
"celery-800", | ||
"celery-900", | ||
"celery-1000", | ||
"celery-1100", | ||
"celery-1200", | ||
"celery-1300", | ||
"celery-1400", | ||
"seafoam-100", | ||
"seafoam-200", | ||
"seafoam-300", | ||
"seafoam-400", | ||
"seafoam-500", | ||
"seafoam-600", | ||
"seafoam-700", | ||
"seafoam-800", | ||
"seafoam-900", | ||
"seafoam-1000", | ||
"seafoam-1100", | ||
"seafoam-1200", | ||
"seafoam-1300", | ||
"seafoam-1400", | ||
"cyan-100", | ||
"cyan-200", | ||
"cyan-300", | ||
"cyan-400", | ||
"cyan-500", | ||
"cyan-600", | ||
"cyan-700", | ||
"cyan-800", | ||
"cyan-900", | ||
"cyan-1000", | ||
"cyan-1100", | ||
"cyan-1200", | ||
"cyan-1300", | ||
"cyan-1400", | ||
"indigo-100", | ||
"indigo-200", | ||
"indigo-300", | ||
"indigo-400", | ||
"indigo-500", | ||
"indigo-600", | ||
"indigo-700", | ||
"indigo-800", | ||
"indigo-900", | ||
"indigo-1000", | ||
"indigo-1100", | ||
"indigo-1200", | ||
"indigo-1300", | ||
"indigo-1400", | ||
"purple-100", | ||
"purple-200", | ||
"purple-300", | ||
"purple-400", | ||
"purple-500", | ||
"purple-600", | ||
"purple-700", | ||
"purple-800", | ||
"purple-900", | ||
"purple-1000", | ||
"purple-1100", | ||
"purple-1200", | ||
"purple-1300", | ||
"purple-1400", | ||
"fuchsia-100", | ||
"fuchsia-200", | ||
"fuchsia-300", | ||
"fuchsia-400", | ||
"fuchsia-500", | ||
"fuchsia-600", | ||
"fuchsia-700", | ||
"fuchsia-800", | ||
"fuchsia-900", | ||
"fuchsia-1000", | ||
"fuchsia-1100", | ||
"fuchsia-1200", | ||
"fuchsia-1300", | ||
"fuchsia-1400", | ||
"magenta-100", | ||
"magenta-200", | ||
"magenta-300", | ||
"magenta-400", | ||
"magenta-500", | ||
"magenta-600", | ||
"magenta-700", | ||
"magenta-800", | ||
"magenta-900", | ||
"magenta-1000", | ||
"magenta-1100", | ||
"magenta-1200", | ||
"magenta-1300", | ||
"magenta-1400", | ||
"chartreuse-100", | ||
"chartreuse-200", | ||
"chartreuse-300", | ||
"chartreuse-400", | ||
"chartreuse-500", | ||
"chartreuse-600", | ||
"chartreuse-700", | ||
"chartreuse-800", | ||
"chartreuse-900", | ||
"chartreuse-1000", | ||
"chartreuse-1100", | ||
"chartreuse-1200", | ||
"chartreuse-1300", | ||
"chartreuse-1400", | ||
"orange-100", | ||
"orange-200", | ||
"orange-300", | ||
"orange-400", | ||
"orange-500", | ||
"orange-600", | ||
"orange-700", | ||
"orange-800", | ||
"orange-900", | ||
"orange-1000", | ||
"orange-1100", | ||
"orange-1200", | ||
"orange-1300", | ||
"orange-1400", | ||
]; |