This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
56 lines (56 loc) · 1.68 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/index.tsx',
'./pages/*.{js,ts,jsx,tsx}',
'./components/Products/*.{js,ts,jsx,tsx}',
'./components/Products/FeatureBox.tsx',
'./components/common/Navbar/*.{js,ts,jsx,tsx}',
'./components/common/Navbar/Navbar.tsx',
],
theme: {
extend: {
colors: {
'highlight-yellow': '#EBFF5E',
'copy-on-dark': '#DFDFDF',
'divider-on-dark': '#30294E',
'dark-background': '#0D0225',
'copy-on-light': '#645D74',
'darker-copy-on-dark': '#9D97AA',
'blue-cta': '#72E4FC',
'purple-dark': '#5420D1',
'user-black': '#1D0A26',
'purple-primary': '#6C37F4',
'color-selected-light': '#ebff5e',
'color-selected-dark': '#8dc31a',
'color-secondary-100': '#b9f2fe',
'color-secondary-200': '#72e4fc',
'color-secondary-300': '#23b6e2',
'color-secondary-400': '#0b75aa',
'color-primary-100': '#b19cff',
'color-primary-200': '#6c37f4',
'color-primary-300': '#5420d1',
'color-primary-400': '#120532',
'color-primary-500': '#0d0225',
'color-copy-on-dark': '#dfdfdf',
'color-darker-copy-on-dark': '#9D97AA',
'color-copy-on-light': '#645d74',
'color-divider-on-dark': '#30294e',
'color-gray': '#a9a9a9',
},
fontFamily: {
sans: 'Poppins',
},
screens: {
desktop: '1340px',
mobile: '601px',
ultra: '1920px',
},
},
},
important: true,
plugins: [],
}