16 lines
266 B
JavaScript
16 lines
266 B
JavaScript
|
module.exports = {
|
||
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
'immich-primary': '#4250af',
|
||
|
'immich-bg': '#f6f8fe',
|
||
|
},
|
||
|
fontFamily: {
|
||
|
'immich-title': ['Snowburst One', 'cursive'],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
};
|