-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 1.39 KB
/
tailwind.config.js
File metadata and controls
44 lines (44 loc) · 1.39 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,jsx,ts,tsx}',
'./components/**/*.{js,jsx,ts,tsx}',
],
presets: [require('nativewind/preset')],
theme: {
extend: {
fontFamily: {
spartan: ['spartan-200', 'sans-serif'],
'spartan-medium': ['spartan-300', 'sans-serif'],
'spartan-bold': ['spartan-500', 'sans-serif'],
'spartan-semibold': ['spartan-700', 'sans-serif'],
'spartan-extra-bold': ['spartan-900', 'sans-serif'],
},
colors: {
primary: {
100: '#0061FF0A',
200: '#0061FF1A',
250: '#0061FF6A',
300: '#0061FF',
},
accent: {
100: '#FBFBFD',
},
black: {
DEFAULT: '#000000',
100: '#8C8E98',
200: '#666876',
300: '#191d31',
},
purple: '#8D0AE7',
orange: '#FF7F50',
green: '#1ABC9C',
greenLighter: '#34D399',
greenMostLightest: '#64E3C99A',
greenLightest: '#64E3C9',
greenLight: '#1ABC9C9A',
},
},
},
plugins: [],
};