Last active
November 14, 2018 12:39
-
-
Save muneneevans/47e35bedc1aaa51869bc4681a753cbac to your computer and use it in GitHub Desktop.
A collection of theme objects
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
| export const base = { | |
| FONT_SIZE_MEDIUM: 14, | |
| FONT_SIZE_LARGE: 18, | |
| PRIMARY_FONT_FAMILY: "AvertaDemo-Regular", | |
| PRIMARY_FONT_FAMILY_BOLD: "AvertaDemo-ExtraBoldItalic", | |
| SECONDARY_FONT_FAMILY: "Product-Sans-Regular", | |
| SECONDARY_FONT_FAMILY_ITALIC: "Product-Sans-Italic", | |
| }; | |
| export const darkTheme = { | |
| PRIMARY_BACKGROUND_COLOR: "#3d3d3d", | |
| PRIMARY_BACKGROUND_COLOR_LIGHT: "#797979", | |
| }; | |
| export const lightTheme = { | |
| PRIMARY_BACKGROUND_COLOR: "#ffffff", | |
| PRIMARY_BACKGROUND_COLOR_LIGHT: "#f7f7f7", | |
| }; | |
| export const colorOptions = { | |
| orange: { | |
| PRIMARY_COLOR_LIGHT: "#FFB74D", | |
| PRIMARY_COLOR: "#FF9800", | |
| PRIMARY_COLOR_BOLD: "#EF6C00", | |
| PRIMARY_FOREGROUND_COLOR: "#ffffff" | |
| }, | |
| red: { | |
| PRIMARY_COLOR_LIGHT: "#E57373", | |
| PRIMARY_COLOR: "#F44336", | |
| PRIMARY_COLOR_BOLD: "#C62828", | |
| PRIMARY_FOREGROUND_COLOR: "#ffffff" | |
| }, | |
| blue: { | |
| PRIMARY_COLOR_LIGHT: "#64B5F6", | |
| PRIMARY_COLOR: "#2196F3", | |
| PRIMARY_COLOR_BOLD: "#1565C0", | |
| PRIMARY_FOREGROUND_COLOR: "#ffffff" | |
| }, | |
| cyan: { | |
| PRIMARY_COLOR_LIGHT: "#4DD0E1", | |
| PRIMARY_COLOR: "#00BCD4", | |
| PRIMARY_COLOR_BOLD: "#00838F", | |
| PRIMARY_FOREGROUND_COLOR: "#ffffff" | |
| }, | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment