-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
87 lines (84 loc) · 2.75 KB
/
Copy pathtailwind.config.js
File metadata and controls
87 lines (84 loc) · 2.75 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/** @type {import('tailwindcss').Config} */
module.exports = {
// NOTE: Update this to include the paths to all of your component files.
content: [
'./App.{js,jsx,ts,tsx}',
'./components/**/*.{js,jsx,ts,tsx}',
'./providers/**/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {
colors: {
primary: {
50: '#EDF0FF',
100: '#D8E2FF',
200: '#ADC6FF',
300: '#80ABFF',
400: '#4B8EFF',
500: '#007AFF', // main
600: '#0072F0',
700: '#005BC1',
800: '#004493',
900: '#002E69',
950: '#001A41',
},
secondary: {
50: '#FFEDE6',
100: '#FFDBCC',
200: '#FFB693',
300: '#FF8C52',
400: '#F26500',
500: '#FF6B00', // main
600: '#C85300',
700: '#A04100',
800: '#7A3000',
900: '#561F00',
950: '#351000',
},
tertiary: {
50: '#F0F0F3',
100: '#E2E2E5',
200: '#C6C6C9',
300: '#AAABAD',
400: '#909193',
500: '#1A1C1E', // main (note: darker than usual 500)
600: '#767779',
700: '#5D5E61',
800: '#454749',
900: '#2F3133',
},
neutral: {
50: '#E9F1FF',
100: '#D4E4FA',
200: '#B9C8DE',
300: '#9DACC2',
400: '#8392A6',
500: '#94A3B8', // main
600: '#69788C',
700: '#516072',
800: '#39485A',
900: '#233143',
950: '#0D1C2D',
},
background: {
100: '#051424',
200: '#122131',
},
white: '#FFFFFF',
black: '#000000',
},
fontFamily: {
headingBold: [
'SpaceGrotesk_700Bold',
'SpaceGrotesk_600SemiBold',
],
headingRegular: ['SpaceGrotesk_400Regular'],
label: ['SpaceGrotesk_600SemiBold'],
body: ['Inter_400Regular'],
bodyMedium: ['Inter_500Medium'],
bodyBold: ['Inter_600SemiBold'],
},
},
},
plugins: [],
}