-
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.
- Loading branch information
1 parent
3f946bc
commit 6f5bfa8
Showing
7 changed files
with
38 additions
and
3 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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
export { Button } from './components/Button'; | ||
export { Card } from './components/Card'; | ||
export { Code } from './components/Code'; | ||
export { colors } from './theme/colors'; |
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,7 @@ | ||
export const borderRadius = { | ||
none: '0px', | ||
xsmall: '4px', | ||
small: '8px', | ||
medium: '16px', | ||
round: '100px', | ||
}; |
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 +1,12 @@ | ||
export const colors = {}; | ||
export const colors = { | ||
black: '#000000', | ||
white: '#FFFFFF', | ||
grey800: '#1F1F1F', | ||
grey700: '#4B4B4B', | ||
grey600: '#8E8E8E', | ||
grey500: '#CACACA', | ||
grey400: '#E1E1E1', | ||
grey300: '#EEEEEE', | ||
grey200: '#F5F5F5', | ||
grey100: '#F5F5F5', | ||
}; |
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,4 @@ | ||
export { borderRadius } from './borderRadius'; | ||
export { colors } from './colors'; | ||
export { opacity } from './opacity'; | ||
export { shadow } from './shadow'; |
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,7 @@ | ||
export const opacity = { | ||
level1: '0%', | ||
level2: '20%', | ||
level3: '40%', | ||
level4: '60%', | ||
level5: '80%', | ||
}; |
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,6 @@ | ||
export const shadow = { | ||
elevation1: '0px 2px 4px 0px rgba(0, 0, 0, 0.10)', | ||
elevation2: '0px 1px 4px 0px rgba(0, 0, 0, 0.12), 0px 2px 8px 0px rgba(0, 0, 0, 0.14)', | ||
elevation3: '0px 1px 6px 0px rgba(0, 0, 0, 0.12), 0px 4px 12px 0px rgba(0, 0, 0, 0.20)', | ||
elevation4: '0px 1px 8px 0px rgba(0, 0, 0, 0.12), 0px 8px 20px 0px rgba(0, 0, 0, 0.20)', | ||
}; |