Initial commit
This commit is contained in:
32
tailwind.config.js
Normal file
32
tailwind.config.js
Normal file
@@ -0,0 +1,32 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ['./index.html', './src/**/*.{ts,tsx,js,jsx}'],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ['"Plus Jakarta Sans"', 'Inter', 'system-ui', 'sans-serif'],
|
||||
display: ['"Plus Jakarta Sans"', 'Inter', 'system-ui', 'sans-serif'],
|
||||
},
|
||||
colors: {
|
||||
brand: {
|
||||
50: '#f5f7ff',
|
||||
100: '#e9edff',
|
||||
200: '#cdd7ff',
|
||||
300: '#a5b6ff',
|
||||
400: '#7a8df9',
|
||||
500: '#5a6bf0',
|
||||
600: '#4350d7',
|
||||
700: '#4149b3',
|
||||
800: '#343b8a',
|
||||
900: '#2d336c',
|
||||
},
|
||||
ink: '#111827',
|
||||
mist: '#f6f8fb',
|
||||
},
|
||||
boxShadow: {
|
||||
subtle: '0 20px 45px -25px rgba(18, 28, 132, 0.35)',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
Reference in New Issue
Block a user