Merge Official Source

This commit is contained in:
Xiaokailnol
2026-02-03 22:48:23 +08:00
commit 399c441e7a
161 changed files with 28630 additions and 0 deletions

27
tailwind.config.ts Normal file
View File

@@ -0,0 +1,27 @@
import plugin from 'tailwindcss/plugin'
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
['low-latency']: 'oklch(0.648 0.15 160)',
['medium-latency']: 'rgb(250, 210, 75)',
['high-latency']: 'rgb(244, 96, 108)',
},
},
},
plugins: [
plugin(({ addUtilities }) => {
addUtilities({
'.scrollbar-hidden': {
'scrollbar-width': 'none!important',
},
'.scrollbar-thin': {
'scrollbar-width': 'thin',
},
})
}),
],
}