forked from NuroDev/nuro.dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
45 lines (44 loc) · 926 Bytes
/
tailwind.config.js
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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
backgroundOpacity: {
25: '0.25',
},
colors: {
gray: {
50: '#f9fafb',
100: '#eaeaeb',
200: '#cacbcd',
300: '#a7a9ac',
400: '#696c71',
500: '#282d34',
600: '#24292f',
700: '#181b20',
800: '#121518',
900: '#000000',
},
primary: {
50: '#00a4ff',
100: '#009aff',
200: '#0090ff',
300: '#0086ff',
400: '#007cff',
500: '#0072ff',
600: '#0068f5',
700: '#005eeb',
800: '#0054e1',
900: '#004ad7',
},
},
fontFamily: {
inter: ['Inter', ...defaultTheme.fontFamily.sans],
},
},
},
variants: {},
plugins: [require('@tailwindcss/line-clamp'), require('@tailwindcss/typography')],
};