I've used typescript for 30 minutes and I already love it

This commit is contained in:
Eclypsed
2024-01-21 23:51:15 -05:00
parent ae8f030afb
commit 266a805ac0
12 changed files with 1411 additions and 10 deletions

21
tailwind.config.js Normal file
View File

@@ -0,0 +1,21 @@
const defaultTheme = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
notoSans: ["'Noto Sans', 'Noto Sans HK', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', 'Noto Sans TC'", ...defaultTheme.fontFamily.sans],
},
colors: {
'lazuli-primary': '#00a4dc',
'neutral-925': 'rgb(16, 16, 16)',
'jellyfin-purple': '#aa5cc3',
'jellyfin-blue': '#00a4dc',
'youtube-red': '#ff0000',
},
},
},
plugins: [],
}