Initial commit: FluxKit UI Component Library

This commit is contained in:
FluxKit
2026-02-19 15:11:11 +00:00
commit a770b18136
3423 changed files with 1271865 additions and 0 deletions

23
tailwind.config.js Normal file
View File

@@ -0,0 +1,23 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts}'],
theme: {
extend: {
colors: {
flux: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e'
}
}
}
},
plugins: []
}