-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 935 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (42 loc) · 935 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
50: '#e8f4f8',
100: '#d1e9f1',
200: '#a3d3e3',
300: '#75bdd5',
400: '#5dade2',
500: '#3498db',
600: '#2980b9',
700: '#1f4e79',
800: '#1a3a5c',
900: '#15263f',
},
pico: {
'sky': '#5dade2',
'blue': '#3498db',
'deep': '#2980b9',
'accent': '#635bff',
'dark': '#1f4e79'
},
gray: {
950: '#0d0f12',
}
},
fontFamily: {
sans: ['-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', 'Oxygen', 'Ubuntu', 'sans-serif'],
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}