-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrush.config.php
More file actions
34 lines (30 loc) · 643 Bytes
/
brush.config.php
File metadata and controls
34 lines (30 loc) · 643 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
<?php
return [
'input' => 'resources/css/main.css',
'output' => 'public/style.css',
'scan' => [
'resources/views'
],
'theme' => [
'spacing' => [
'1' => '0.25rem',
'2' => '0.5rem',
'3' => '1rem',
'4' => '1.5rem',
'5' => '2rem',
],
'colors' => [
'red' => [
'500' => '#ef4444'
],
'blue' => [
'500' => '#3b82f6'
]
],
'breakpoints' => [
'md' => '768px',
'lg' => '1024px'
]
],
'minify' => true
];