chore: initial import to Nexus_Edu
This commit is contained in:
33
tailwind.config.ts
Normal file
33
tailwind.config.ts
Normal 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;
|
||||
Reference in New Issue
Block a user