forked from FixMyBerlin/nudafa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
73 lines (71 loc) · 1.67 KB
/
tailwind.config.js
File metadata and controls
73 lines (71 loc) · 1.67 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
const colors = require('tailwindcss/colors')
import defaultTheme from 'tailwindcss/defaultTheme'
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
'./keystatic/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
],
theme: {
extend: {
fontFamily: {
sans: ['Open Sans Variable', ...defaultTheme.fontFamily.sans],
serif: ['Roboto Slab', ...defaultTheme.fontFamily.serif],
},
screens: {
md: '945px',
},
},
colors: {
white: colors.white,
black: colors.black,
gray: colors.gray,
yellow: colors.yellow,
red: colors.red,
green: {
50: '#ECFDF5',
100: '#D1FAE5',
200: '#A7F3D0',
300: '#6EE7B7',
400: '#34D399',
500: '#10B981',
600: '#059669',
700: '#047857',
800: '#065F46',
900: '#064E3B',
},
beige: {
50: '#F5F0E2',
100: '#F5E4B7',
200: '#EFD38A',
300: '#EAC25D',
400: '#E4B130',
500: '#C6961A',
600: '#977214',
700: '#6C520E',
800: '#69582D',
900: '#362D17',
},
pink: {
50: '#FFF1F2',
100: '#FFE4E6',
200: '#FECDD3',
300: '#FDA4AF',
400: '#FB7185',
500: '#F43F5E',
600: '#E11D48',
700: '#BE123C',
800: '#9F1239',
900: '#881337',
},
},
fontWeight: {
normal: '400',
medium: 500,
semibold: 600,
bold: '700',
extrabold: '800',
},
},
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')],
}