-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
40 lines (39 loc) · 992 Bytes
/
tailwind.config.mjs
File metadata and controls
40 lines (39 loc) · 992 Bytes
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
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
import aspectRatio from '@tailwindcss/aspect-ratio';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'class',
theme: {
extend: {
colors: {
'cfp-blue': {
50: '#e6f7fd',
100: '#cceffa',
200: '#99dff5',
300: '#66cff0',
400: '#33bfeb',
500: '#00a7e1',
600: '#0086b4',
700: '#006487',
800: '#00435a',
900: '#00212d',
},
'cfp-green': {
50: '#f2fbee',
100: '#e5f7dc',
200: '#cbefb9',
300: '#b1e796',
400: '#97df73',
500: '#6cc049',
600: '#569a3a',
700: '#41732c',
800: '#2b4d1d',
900: '#16260f',
},
},
},
},
plugins: [forms, typography, aspectRatio],
};