-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (36 loc) · 904 Bytes
/
tailwind.config.js
File metadata and controls
39 lines (36 loc) · 904 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
const defaultTheme = require('tailwindcss/defaultTheme');
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
neutral: colors.neutral,
blue: colors.sky,
red: colors.red,
green: colors.green,
yellow: {
50: '#fef8ea',
100: '#fcedca',
200: '#fae1aa',
300: '#f8d68a',
400: '#f7cb6a',
500: '#f5c04a',
600: '#f3b52a',
700: '#cf9a24',
800: '#aa7f1d',
900: '#866417',
},
primary: colors.yellow[500],
},
fontFamily: {
sans: ['Poppins', ...defaultTheme.fontFamily.sans],
},
extend: {},
},
plugins: [],
};