Skip to content

Commit fc5adae

Browse files
committed
Fix btn colors
1 parent 9c080cd commit fc5adae

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

resources/sass/_btn.scss

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,34 +17,34 @@
1717
@include button-variant(
1818
$white,
1919
$white,
20-
var(--bs-primary),
20+
var($blue),
2121
darken($white, 10%),
2222
darken($white, 10%),
23-
var(--bs-primary)
23+
var($blue)
2424
);
2525

2626
&.btn-primary {
27-
color: var(--bs-primary);
27+
color: var($blue);
2828
}
2929

3030
&.btn-secondary {
31-
color: var(--bs-secondary);
31+
color: var($gray-600);
3232
}
3333

3434
&.btn-success {
35-
color: var(--bs-success);
35+
color: var($green);
3636
}
3737

3838
&.btn-danger {
39-
color: var(--bs-danger);
39+
color: var($red);
4040
}
4141

4242
&.btn-warning {
43-
color: var(--bs-warning);
43+
color: var($yellow);
4444
}
4545

4646
&.btn-info {
47-
color: var(--bs-info);
47+
color: var($cyan);
4848
}
4949
}
5050

0 commit comments

Comments
 (0)