mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
f55b3add80
Co-authored-by: Thomas Way <thomas@6f.io>
30 lines
672 B
JavaScript
30 lines
672 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
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'],
|
|
},
|
|
spacing: {
|
|
18: '4.5rem',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|