forked from open-sauced/landing-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
68 lines (68 loc) · 1.85 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
fontFamily: {
display: ["'Inter', sans-serif"],
body: ["'Inter', sans-serif"],
sans: ["'Inter', sans-serif"],
openSans: ["'OpenSans', sans-serif"],
},
screens: {
mobile: '320px',
tablet: '640px',
largeTablet: '840px',
laptop: '1024px',
desktop: '1280px',
_1054: '1054px',
_1106: '1106px',
_1255: '1255px',
_1594: '1594px',
_1764: '1764px',
_2k: '2000px',
},
extend: {
colors: {
gray50: '#C8C8C8',
gray100: '#f6f5f0',
gray105: '#F8F9FA',
gray110: '#D8DADB',
gray120: '#C5C5C5',
gray150: '#8C8C8C',
gray300: '#595959',
gray200: '#E5E5E5',
gray400: '#333333',
gray550: '#11181C',
bgGray: '#F9F9F9',
bgWhite: '#FCFCFC',
blueAccent: '#2379EC',
lightBlue: '#308CE0',
darkBlue: '#3452BC',
twitterBlue: '#0EA0DA',
lightOrange: '#F18A21',
darkOrange: '#ED5332',
darkBG: '#11181C',
brandYellow: '#FCB60A',
brandRed: '#ED5332',
brandOrange: '#ED6A32',
textPrimary: '#FFF9ED',
footerBG: 'rgba(248, 114, 22, 0.07)',
footerDividerColor: 'rgba(248, 114, 22, 0.07)',
},
fontFamily: {
primary: "'Inter', sans-serif",
inter: "'Inter', sans-serif",
secondary:
'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
},
backgroundImage: {
'pizza-slices': "url('/pizzaSlices.svg')",
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}