Created
April 25, 2021 02:15
-
-
Save mrmrs/476da503fb359cf04bd7d0acb0c02117 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import theme from './theme' | |
const buttonThemeTemplate = { | |
// Typography | |
fontFamily: [ ], | |
fontSize: [ ], | |
fontWeight: [ ], | |
textTransform: [ ], | |
// Palette | |
colors: [ ], | |
backgroundColors: [ ], | |
// Borders | |
borderColors: [ ] | |
borderRadius: [ ], | |
borderStyle: [ ], | |
borderWidth: [ ], | |
borderDirections: [ ], | |
// Spacing | |
paddingTop: [], | |
paddingLeft: [], | |
paddingBottom: [], | |
paddingRight: [], | |
// Hover states | |
hoverColor: [ ], | |
hoverBg: [ ], | |
hoverBoxShadow: [ ], | |
hoverBorderColor: [ ], | |
hoverSize: [ ], | |
// Focus states | |
focusColor: [ ], | |
focusBg: [ ], | |
focusBorderColor: [ ], | |
focusBoxShadow: [ ], | |
focusSize: [ ], | |
// Focus states | |
activeColor: [ ], | |
activeBg: [ ], | |
activeBorderColor: [ ], | |
activeBoxShadow: [ ], | |
activeSize: [ ], | |
transitionProperty: [ ], | |
transitionDuration: [ ], | |
transitionTimingFunction: [ ], | |
} | |
export default buttonThemeTemplate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment