immich/web/tailwind.config.cjs

26 lines
510 B
JavaScript
Raw Normal View History

module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
2022-10-26 09:10:48 -07:00
darkMode: 'class',
theme: {
extend: {
colors: {
2022-10-26 09:10:48 -07:00
// Light Theme
'immich-primary': '#4250af',
'immich-bg': 'white',
'immich-fg': 'black',
2022-10-26 09:10:48 -07:00
'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: []
};