-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
53 lines (51 loc) · 1.3 KB
/
tailwind.config.cjs
File metadata and controls
53 lines (51 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
module.exports = {
darkMode: 'class',
content: [
'./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
'./node_modules/flowbite/**/*.js'
],
theme: {
extend: {
colors: {
current: 'currentColor',
transparent: 'transparent',
white: '#ffffff',
primary : {
'white':'#ffffff',
'50': '#fafaf9',
'100': '#eecdd2',
'200': '#eeb0ba',
'300': '#ee8f9d',
'400': '#ee6c84',
'500': '#ee496d',
'600': '#ee264d',
'700': '#b51d3b',
'800': '#292524',
'900': '#1c1917',
'950': '#0f172b',
},
},
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
fontSize: {
xs: ['0.75rem', '1rem'],
sm: ['0.875rem', '1.25rem'],
base: ['1rem', '1.75rem'],
lg: ['1.125rem', '2rem'],
xl: ['1.25rem', '2.125rem'],
'2xl': ['1.5rem', '2rem'],
'3xl': ['1.875rem', '2.375rem'],
'4xl': ['2.25rem', '2.75rem'],
'5xl': ['3rem', '3.5rem'],
'6xl': ['3.75rem', '4.25rem'],
},
},
plugins: [
require('flowbite/plugin'),
require('@tailwindcss/typography')
],
};