blob: 7d14e5d3cfcaa35b6d3795c4d234280b9df3ff8b (
plain)
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
|
// Use this file to overwrite the basic Bootstrap variables and add your own variables
// To overwrite a Bootstrap variable you don´t have to touch the Bootstrap folder.
// Just copy a variable from src/sass/bootstrap4/_variables.scss, paste it here and edit the value.
//$primary: #0061ff; // Thats a sample how you could change a BootStrap variable.
$primary: (
color: #f08506,
dark: darken(#f08506, 10%),
light: lighten(#f08506, 10%)
);
$secondary: (
color: #f08506,
dark: darken(#f08506, 10%),
light: lighten(#f08506, 10%)
);
$white: #fff !default;
$gray-100: #f8f9fa !default;
$gray-200: #e9ecef !default;
$gray-300: #dee2e6 !default;
$gray-400: #ced4da !default;
$gray-500: #adb5bd !default;
$gray-600: #6c757d !default;
$gray-700: #495057 !default;
$gray-800: #343a40 !default;
$gray-900: #212529 !default;
$black: #000 !default;
|