2023-10-09 17:49:46 -04:00
|
|
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
|
|
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
export default {
|
|
|
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
|
theme: {
|
|
|
|
|
extend: {
|
|
|
|
|
fontFamily: {
|
2024-01-06 22:05:51 -05:00
|
|
|
notoSans: ["'Noto Sans', 'Noto Sans HK', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', 'Noto Sans TC'", ...defaultTheme.fontFamily.sans],
|
|
|
|
|
},
|
|
|
|
|
colors: {
|
2024-01-12 02:44:06 -05:00
|
|
|
'lazuli-primary': '#00a4dc',
|
2024-01-06 22:05:51 -05:00
|
|
|
'neutral-925': 'rgb(16, 16, 16)',
|
|
|
|
|
'jellyfin-purple': '#aa5cc3',
|
|
|
|
|
'jellyfin-blue': '#00a4dc',
|
2024-01-12 02:44:06 -05:00
|
|
|
'youtube-red': '#ff0000',
|
2023-10-09 17:49:46 -04:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
plugins: [],
|
|
|
|
|
}
|