-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
28 lines (26 loc) · 819 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
28 lines (26 loc) · 819 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
import defaultTheme from 'tailwindcss/defaultTheme';
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx,vue}",
],
theme: {
extend: {
backgroundImage: {
'apple': "url('../images/apple-bg.jpg')",
},
colors: {
'apple-bar': '#e8e6df',
'apple-selected': '#d4d3cc',
},
fontFamily: {
sans: ['Inter var', 'Gluten', ...defaultTheme.fontFamily.sans],
mono: ['Major Mono Display', 'Syne Mono', ...defaultTheme.fontFamily.mono],
elite: ['Special Elite', ...defaultTheme.fontFamily.sans],
inter: ['Inter'],
}
},
},
plugins: [],
}