2021-12-25 14:39:47 +01:00
|
|
|
const styles = {
|
2024-05-08 13:16:23 +02:00
|
|
|
breakpoints: {
|
|
|
|
desktop: '',
|
|
|
|
laptop: '',
|
|
|
|
tablet: '',
|
|
|
|
mobile: ''
|
|
|
|
},
|
|
|
|
theme: {
|
|
|
|
colors: {
|
|
|
|
primary: '#03a9f4', /* Sets the text color to the theme primary color. */
|
|
|
|
primaryBg: '#e8eaf6', /* Sets the background color to the theme primary color. */
|
|
|
|
onPrimary: '#fff', /* Sets the text color to the color configured for text on the primary color. */
|
2021-12-25 14:39:47 +01:00
|
|
|
|
2024-05-08 13:16:23 +02:00
|
|
|
secondary: '#03a9f4', /* Sets the text color to the theme secondary color. */
|
|
|
|
secondaryBg: '#fce4ec', /* Sets the background color to the theme secondary color. */
|
|
|
|
onSecondary: '#fff', /* Sets the text color to the color configured for text on the secondary color. */
|
2021-12-25 14:39:47 +01:00
|
|
|
|
2024-05-08 13:16:23 +02:00
|
|
|
surface: '#fff', /* Sets the background color to the surface background color. */
|
|
|
|
onSurface: '#333', /* Sets the text color to the color configured for text on the surface color. */
|
|
|
|
background: '#eee', /* Sets the background color to the theme background color. */
|
2021-12-25 14:39:47 +01:00
|
|
|
|
2024-05-08 13:16:23 +02:00
|
|
|
warning: '#FFA000',
|
|
|
|
error: '#F44336'
|
|
|
|
},
|
2021-12-25 14:39:47 +01:00
|
|
|
|
2024-05-08 13:16:23 +02:00
|
|
|
addressColors: [
|
|
|
|
'#256480',
|
|
|
|
'#002530',
|
|
|
|
'#02564e',
|
|
|
|
'#d32f2f',
|
|
|
|
'#795548',
|
|
|
|
'#004d40',
|
|
|
|
'#006064',
|
|
|
|
'#9c27b0',
|
|
|
|
'#2196f3',
|
|
|
|
'#d81b60'
|
|
|
|
]
|
|
|
|
}
|
2021-12-25 14:39:47 +01:00
|
|
|
}
|
2024-05-08 13:16:23 +02:00
|
|
|
|
|
|
|
module.exports = styles
|