-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
72 lines (71 loc) · 2.44 KB
/
tailwind.config.js
File metadata and controls
72 lines (71 loc) · 2.44 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./App.{js,ts,tsx}',
'./app/**/*.{js,ts,tsx}',
'./components/**/*.{js,ts,tsx}',
'./src/**/*.{js,ts,tsx}',
],
presets: [require('nativewind/preset')],
theme: {
extend: {
colors: {
background: '#0A0A0F',
surface: '#131318',
'surface-dim': '#131318',
'surface-container-lowest': '#0E0E13',
'surface-container-low': '#1B1B20',
'surface-container': '#1F1F25',
'surface-container-high': '#2A292F',
'surface-container-highest': '#35343A',
'surface-variant': '#35343A',
'surface-bright': '#39383E',
primary: '#71FFE8',
'primary-container': '#00E5CC',
'primary-fixed': '#41FCE2',
'primary-fixed-dim': '#00DFC6',
'on-primary': '#003730',
'on-primary-container': '#006256',
'on-primary-fixed': '#00201B',
'on-primary-fixed-variant': '#005047',
secondary: '#C9BFFF',
'secondary-container': '#4720CA',
'secondary-fixed': '#E5DEFF',
'secondary-fixed-dim': '#C9BFFF',
'on-secondary': '#2E009C',
'on-secondary-container': '#BAAEFF',
'on-secondary-fixed': '#1A0063',
'on-secondary-fixed-variant': '#441CC8',
tertiary: '#FFE5BD',
'tertiary-container': '#FFC24D',
'tertiary-fixed': '#FFDEA9',
'tertiary-fixed-dim': '#F9BC48',
'on-tertiary': '#422C00',
'on-tertiary-container': '#725000',
'on-tertiary-fixed': '#271900',
'on-tertiary-fixed-variant': '#5E4100',
'on-surface': '#E4E1E9',
'on-surface-variant': '#B9CAC5',
'on-background': '#E4E1E9',
outline: '#849490',
'outline-variant': '#3B4A46',
error: '#FFAB4B',
'error-container': '#93000A',
'on-error': '#690005',
'on-error-container': '#FFDAD6',
'surface-tint': '#00DFC6',
'inverse-surface': '#E4E1E9',
'inverse-on-surface': '#303036',
'inverse-primary': '#006B5E',
},
fontFamily: {
headline: ['SpaceGrotesk_700Bold', 'Space Grotesk', 'sans-serif'],
'headline-medium': ['SpaceGrotesk_500Medium', 'Space Grotesk', 'sans-serif'],
body: ['Inter_400Regular', 'Inter', 'sans-serif'],
'body-medium': ['Inter_500Medium', 'Inter', 'sans-serif'],
label: ['Inter_400Regular', 'Inter', 'sans-serif'],
},
},
},
plugins: [],
};