-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
41 lines (39 loc) · 1006 Bytes
/
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
import type { Config } from "tailwindcss"
const config: Config = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,ts,tsx}"],
theme: {
container: {
center: true,
},
screens: {
md: '760px',
lg: '760px',
xl: '760px',
'2xl': '760px',
},
colors: {
'blue-french': '#06c',
'blue-malibu': '#5ea5e3',
'blue-maritime': '#147',
'blue-warmspring': '#3974ae',
'gray-carbon': '#333',
'gray-colossus': '#979797',
'gray-doctor': '#f8f8f8',
'gray-lucky': '#777',
'gray-placebo': '#e3e3e3',
'gray-platinum': '#dfdfdf',
'gray-steam': '#ddd',
'white': '#fff',
},
fontFamily: {
trebuchet: ['Trebuchet MS', 'Lucida Grande', 'Verdana', 'Arial', 'Sans-Serif'],
lucida: ['Lucida Grande', 'Verdana', 'Arial', 'Sans-Serif'],
arial: ['Arial', 'Helvetica', 'sans-serif']
},
extend: {},
},
plugins: [
require("@tailwindcss/typography")
],
}
export default config