-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add theme provider #312
base: staging
Are you sure you want to change the base?
Add theme provider #312
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
const theme = { | ||
colors: { | ||
primary: { | ||
700: '#02600A', | ||
600: '#287832', | ||
500: '#329628', | ||
400: '#5BC13E', | ||
300: '#96DC8C', | ||
200: '#C8F0C8', | ||
100: '#F0FAFA', | ||
}, | ||
secondary: { | ||
600: '#04102F', | ||
500: '#475065', | ||
400: '#8E94A4', | ||
300: '#C7CAD1', | ||
200: '#E3E5E8', | ||
100: '#F7F7F7', | ||
}, | ||
neutral: { | ||
700: '#1F1F1F', | ||
600: '#6D6D6D', | ||
500: '#B1B1B1', | ||
400: '#DEDEDE', | ||
300: '#F3F3F3', | ||
200: '#FFFFFF', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Perdón por demorarme en llegar a este comentario pero #FFFFFF al ser blanco no debería ser 0?, no me imagino que valor podría tener 100 o 50 en esa nomenclatura. También: negro debería ser 1000? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @wixo me estoy guiando de nuestra paleta de colores, donde nuestro máximo valor es 700 |
||
}, | ||
status: { | ||
success: { | ||
700: '#45A73D', | ||
600: '#4BC540', | ||
500: '#6FEC64', | ||
400: '#BAF4B5', | ||
300: '#E3F9E1', | ||
200: '#F7FDF6', | ||
}, | ||
warning: { | ||
700: '#807300', | ||
600: '#B3A100', | ||
500: '#FFE500', | ||
400: '#FFF599', | ||
300: '#FFFACC', | ||
}, | ||
error: { | ||
700: '#721111', | ||
600: '#C41E1E', | ||
500: '#F86363', | ||
400: '#F8A6A6', | ||
300: '#F9D5D5', | ||
200: '#FDF4F4', | ||
}, | ||
}, | ||
}, | ||
}; | ||
export default theme; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Genial! 🙌