You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.1 KiB
26 lines
1.1 KiB
const defaultTheme = { |
|
primary: "#00a8ff", |
|
primaryText: "#000000", |
|
primaryDark: "#005dff", |
|
primaryLight: "#70ceff", |
|
secondary: "#0dbe94", |
|
secondaryText: "#000000", |
|
secondaryDark: "#008868", |
|
secondaryLight: "#4effd5", |
|
background: "#ffffff", |
|
backgroundText: "#000000", |
|
surface: "#6eb1d2", |
|
surfaceText: "#000000", |
|
surfaceBorder: "#FF08AD", |
|
info: "#43c1ff", |
|
infoMessageText: "#000000", |
|
success: "#42b258", |
|
successMessageText: "#000000", |
|
warning: "#ffa200", |
|
warningMessageText: "#000000", |
|
error: "#ff4600", |
|
errorMessageText: "#000000", |
|
}; |
|
const classNames = |
|
"bg-primary text-primaryText bg-secondary text-secondaryText bg-primaryDark bg-primaryLight text-primaryDark text-primaryLight bg-primaryDark bg-secondaryLight text-secondaryDark text-secondaryLight bg-secondaryDark text-secondaryDark bg-background text-backgroundText bg-surface text-surfaceText border-surfaceBorder bg-info text-infoMessageText bg-success text-successMessageText bg-warning text-warningMessageText bg-error text-errorMessageText"; |
|
export default defaultTheme;
|
|
|