chore: initial import to Nexus_Edu

This commit is contained in:
SpecialX
2025-11-28 19:23:19 +08:00
commit 38244630a7
153 changed files with 22541 additions and 0 deletions

33
tailwind.config.ts Normal file
View File

@@ -0,0 +1,33 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/views/**/*.{js,ts,jsx,tsx,mdx}",
"./src/features/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-inter)', 'sans-serif'],
},
colors: {
ios: {
bg: '#F2F2F7',
card: 'rgba(255, 255, 255, 0.8)',
blue: '#007AFF',
gray: '#8E8E93',
red: '#FF3B30',
green: '#34C759',
separator: 'rgba(60, 60, 67, 0.36)',
}
},
boxShadow: {
'glass': '0 8px 32px 0 rgba(31, 38, 135, 0.07)',
}
},
},
plugins: [],
};
export default config;