-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
71 lines (69 loc) · 1.51 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
// import defaultTheme from 'tailwindcss/defaultTheme';
const config: Config = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#00a5db',
secondary: '#006ea0',
discreet: {
light: '#e7fcff',
egg: '#eee8a9'
},
warning: {
200: '#ffc971',
300: '#ffb627',
500: '#ff9505',
700: '#e2711d',
800: '#cc5803',
},
squash: {
red: '#f96b72',
green: '#02af79',
},
dark: {
50: '#fff',
200: '#ccc',
600: '#444a4f',
700: '#22292e',
800: '#0f2127',
950: '#111',
},
coffee: {
light: '#6f4e37',
dark: '#896044',
},
medalmonday: {
primary: '#2e5d4e',
light: '#698e80',
dark: '#1e332b',
},
js: '#ffe70b',
node: '#026e00',
react: '#149eca',
vue: '#42d392',
snes: {
a: '#e60012',
b: '#ffe100',
x: '#00a7eb',
y: '#6eb92b',
},
social: {
github: '#24292e',
instagram: '#fb3958',
linkedin: '#0077b5',
xing: '#0698a0',
}
},
fontFamily: {
sans: ['var(--font-clear-sans)'], // , ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
};
export default config;