-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (45 loc) · 1.08 KB
/
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
46
47
/* eslint-disable */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,jsx}"],
theme: {
screens: {
sm: '380px',
md: '700px',
lg: '900px',
xl: '1440px',
},
colors: {
'black':'#000000',
'white':'#ffffff',
'blue': '#1fb6ff',
'red': '#f03207',
'purple': '#7e5bef',
'pink': '#ff49db',
'orange': '#ff7849',
'green': '#13ce66',
'light-green' : '#a3ffcc',
'yellow': '#ffc82c',
'gray-dark': '#273444',
'gray': '#8492a6',
'gray-light': '#d3dce6',
},
fontFamily: {
mono:['ui-monospace'],
Hacker: ["hacker"],
Pixel: ["pixel"],
PixelLarge :["pixel_large"]
},
fontSize: {
sxm: ['10px','15px'],
sm: ['14px','20px'],
base: ['18px','24px'],
xl: ['24px','32px'],
'2xl': ['32px','48px'],
'3xl':['40px','52px'],
},
extend: {
},
},
plugins: [],
}