-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (53 loc) · 1.77 KB
/
tailwind.config.js
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
import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/**/*.css',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
theme: {
extend: {
// Färger
colors: {
contentBox: {
background: '#D7DAE5', // Ljus grå
border: '#F57C00', // Brand orange
text: '#000000', // Svart
},
buttonStyle: {
background: '#4E5563', // Grå
border: '#F57C00', // Brand Orange
text: '#D7DAE5', // Grädd vit
hooverOn: '#6B7384', // Ljus Grå
},
},
// Bakgrundsbilder (för gradienten)
backgroundImage: {
'gradient-diagonal': 'linear-gradient(45deg, #B2B5C0, #525560)',
},
// Skugga
boxShadow: {
'content-box': '10px 10px 15px 5px rgba(10, 8, 6, 0.8)', // Anpassad skugga
},
// Typsnitt
fontFamily: {
heading: ['"Inter"', 'sans-serif'], // Rubriker
body: ['"Roboto"', 'sans-serif'], // Brödtext
},
// Max bredd
maxWidth: {
'screen-1920': '1920px',
},
},
safelist: [
'btn', 'btn-default', 'btn-large', 'btn-small'
],
},
plugins: [forms],
};