Skip to content

Commit 7a454e4

Browse files
committed
feat: Add Melt's colors to tailwind config
1 parent f97d76c commit 7a454e4

File tree

1 file changed

+44
-1
lines changed

1 file changed

+44
-1
lines changed

tailwind.config.ts

+44-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,50 @@ export default {
44
content: ['./src/**/*.{html,js,svelte,ts}'],
55

66
theme: {
7-
extend: {},
7+
container: {
8+
center: true,
9+
padding: '2rem',
10+
screens: {
11+
'2xl': '1440px',
12+
},
13+
},
14+
extend: {
15+
colors: {
16+
magnum: {
17+
'50': '#fff9ed',
18+
'100': '#fef2d6',
19+
'200': '#fce0ac',
20+
'300': '#f9c978',
21+
'400': '#f7b155',
22+
'500': '#f38d1c',
23+
'600': '#e47312',
24+
'700': '#bd5711',
25+
'800': '#964516',
26+
'900': '#793a15',
27+
'950': '#411c09',
28+
},
29+
},
30+
fontFamily: {
31+
sans: [
32+
'-apple-system',
33+
'BlinkMacSystemFont',
34+
'Segoe UI',
35+
'Roboto',
36+
'Oxygen',
37+
'Ubuntu',
38+
'Cantarell',
39+
'Fira Sans',
40+
'Droid Sans',
41+
'Helvetica Neue',
42+
'Arial',
43+
'sans-serif',
44+
'Apple Color Emoji',
45+
'Segoe UI Emoji',
46+
'Segoe UI Symbol',
47+
],
48+
mono: ['ui-monospace', 'SFMono-Regular', 'SF Mono', 'Menlo', 'Consolas', 'Liberation Mono', 'monospace'],
49+
},
50+
},
851
},
952

1053
plugins: [],

0 commit comments

Comments
 (0)