mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-30 01:26:43 +08:00
19 lines
565 B
JavaScript
19 lines
565 B
JavaScript
export const theme = {
|
|
colors: {
|
|
primary: '#f89e6b',
|
|
secondary: '#466372',
|
|
emphasis: '#375160',
|
|
error: '#ff0000',
|
|
text: '#6f6f6f'
|
|
},
|
|
spacing: {
|
|
normal: '10px',
|
|
big: '20px'
|
|
},
|
|
effects: {
|
|
shadow_small: 'rgba(0, 0, 0, 0.14) 2px 2px 2px 0px',
|
|
shadow: 'rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px, rgba(0, 0, 0, 0.2) 0px 2px 4px -1px',
|
|
shadow_large: 'rgba(158, 163, 172, 0.3) 0px 19px 60px, rgba(158, 163, 172, 0.22) 0px 15px 20px'
|
|
}
|
|
}
|