mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
26 lines
510 B
JavaScript
26 lines
510 B
JavaScript
module.exports = {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// Light Theme
|
|
'immich-primary': '#4250af',
|
|
'immich-bg': 'white',
|
|
'immich-fg': 'black',
|
|
'immich-gray': '#F6F6F4',
|
|
|
|
// Dark Theme
|
|
'immich-dark-primary': '#adcbfa',
|
|
'immich-dark-bg': 'black',
|
|
'immich-dark-fg': '#e5e7eb',
|
|
'immich-dark-gray': '#212121'
|
|
},
|
|
fontFamily: {
|
|
'immich-title': ['Snowburst One', 'cursive']
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|