-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (36 loc) · 938 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (36 loc) · 938 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/tw-elements/dist/js/**/*.js"
],
theme: {
fontFamily: {
'SecularOne': ['"Secular One"', 'sans-serif'],
'Stacker': ['Stacker', 'sans-serif'],
'serif': ['"fonttwo"', "Georgia"],
},
colors: {
'white': '#ffffff',
'purple': '#9370d8',
'light-purple': '#ac82ff',
'yellow': '#ffd801',
'orange': '#ff7f50',
'light-gray': '#fefefe',
'gray': '#96a1a7',
'black': '#000000',
'googray': '#5F6368',
'pink': '#eb37c5',
'purple': '#360a62',
'blue': '#145db6',
'cyan': '#18e4ec', 'pinkFAQ': '#eb37c5',
'purpleFAQ': '#360a62',
'blueFAQ': '#145db6',
'cyanFAQ': '#18e4ec',
'purp2': '#ad50f0',
},
extend: {},
},
plugins: [require("tw-elements/dist/plugin")],
}