-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
97 lines (96 loc) · 1.95 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
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
88
89
90
91
92
93
94
95
96
97
import defaultTheme from 'tailwindcss/defaultTheme';
import containerQueries from '@tailwindcss/container-queries';
import colors from 'tailwindcss/colors';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{svelte,html,js,ts}'],
theme: {
colors: {
transparent: 'transparent',
currentColor: 'currentColor',
inherit: 'inherit',
black: colors.black,
white: colors.white,
red: colors.red,
green: colors.green,
zinc: colors.zinc
},
extend: {
screens: {
xs: '480px'
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
mono: ['JetBrains Mono', ...defaultTheme.fontFamily.mono]
},
colors: {
shark: {
50: '#f4f6f7',
100: '#e2e8eb',
200: '#c9d3d8',
300: '#a3b3bd',
400: '#768c9a',
500: '#5a7080',
600: '#4e5e6c',
700: '#434f5b',
800: '#3c454e',
900: '#363c43',
950: '#1b1f24'
},
mineShaft: {
50: '#f4f5f7',
100: '#e4e7e9',
200: '#cbd1d6',
300: '#a7b1b9',
400: '#7c8894',
500: '#616d79',
600: '#535c67',
700: '#474d57',
800: '#3f444b',
900: '#383c41',
950: '#22252a'
},
skyBlue: {
50: '#eff9ff',
100: '#def3ff',
200: '#b6e8ff',
300: '#75d9ff',
400: '#2cc6ff',
500: '#00b5ff',
600: '#008cd4',
700: '#006fab',
800: '#005e8d',
900: '#064e74',
950: '#04314d'
},
springGreen: {
50: '#edfff8',
100: '#d5fff0',
200: '#aeffe2',
300: '#70ffcc',
400: '#2bfdb0',
500: '#00ed97',
600: '#00c076',
700: '#00965f',
800: '#06754e',
900: '#076042',
950: '#003724'
},
solar: {
50: '#fffdea',
100: '#fff8c5',
200: '#fff185',
300: '#ffe246',
400: '#ffd11b',
500: '#ffb000',
600: '#e28600',
700: '#bb5d02',
800: '#984808',
900: '#7c3b0b',
950: '#481d00'
}
}
}
},
plugins: [containerQueries]
};