33 lines
784 B
TypeScript
33 lines
784 B
TypeScript
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; |