KNACSS/sass/_config/_variables.scss

92 lines
2.5 KiB
SCSS
Raw Normal View History

// Config file and project variables
2014-05-04 15:48:00 +02:00
2017-10-31 12:01:39 +01:00
// ------------
2017-12-06 09:40:30 +01:00
// Spacing zone
2017-10-31 12:01:39 +01:00
// ------------
// Number of grid-columns
2018-11-04 11:17:13 +01:00
$cols: 12 !default;
2017-12-06 09:40:30 +01:00
// Grid gutters (for .has-gutter-* classes)
2017-10-30 15:42:32 +01:00
$grid-gutters: (
'': 1rem,
'-l': 2rem,
2017-10-31 12:01:39 +01:00
'-xl': 4rem
) !default;
2017-10-13 17:05:37 +02:00
2017-12-06 09:40:30 +01:00
// Spacings
$spacer-tiny : .5rem !default;
$spacer-tiny-plus : .7rem !default;
$spacer-small : 1rem !default;
$spacer-small-plus : 1.5rem !default;
$spacer-medium : 2rem !default;
$spacer-medium-plus : 3rem !default;
$spacer-large : 4rem !default;
$spacer-large-plus : 6rem !default;
$spacer-extra-large : 8rem !default;
$spacer-extra-large-plus : 12rem !default;
$spacer-ultra-large : 16rem !default;
$spacer-ultra-large-plus : 20rem !default;
2017-10-13 17:05:37 +02:00
2017-10-16 16:23:56 +02:00
// z-indexes
2017-11-02 16:08:50 +01:00
$zindex-navigation : 1000 !default;
$zindex-dropdown : 2000 !default;
$zindex-popover : 3000 !default;
$zindex-tooltip : 4000 !default;
$zindex-modal : 5000 !default;
$zindex-notification : 6000 !default;
$zindex-debug : 7000 !default;
2017-10-16 16:23:56 +02:00
2017-10-31 12:01:39 +01:00
// ----------
2017-12-06 09:40:30 +01:00
// Color zone
2017-10-31 12:01:39 +01:00
// ----------
2017-12-06 09:40:30 +01:00
// Color names
2017-10-13 10:59:40 +02:00
$white : #fff !default;
$gray-100 : #f8f9fa !default;
$gray-200 : #e7e9ed !default;
$gray-300 : #dee2e6 !default;
$gray-400 : #ced4da !default;
$gray-500 : #acb3c2 !default;
$gray-600 : #727e96 !default;
$gray-700 : #454d5d !default;
$gray-800 : #333 !default;
$gray-900 : #212529 !default;
$black : #000 !default;
$blue-300 : #5BC0DE !default;
$blue-500 : #0275D8 !default;
$green-500 : #5CB85C !default;
$orange-500 : #F0AD4E !default;
$red-500 : #D9534F !default;
2017-12-06 09:40:30 +01:00
// Semantic colors
2018-11-04 11:17:13 +01:00
$color-brand : $green-500 !default;
$color-primary : $blue-500 !default;
$color-success : $green-500 !default;
$color-info : $blue-300 !default;
$color-warning : $orange-500 !default;
$color-danger : $red-500 !default;
$color-inverse : $gray-800 !default;
$color-ghost : transparent !default;
$color-muted : $gray-200 !default;
2016-11-22 14:47:41 +01:00
2017-10-31 12:01:39 +01:00
// ---------------
2017-12-06 09:40:30 +01:00
// Components zone
2017-10-31 12:01:39 +01:00
// ---------------
2017-12-06 09:40:30 +01:00
// Global border-radius
2017-10-31 12:01:39 +01:00
$border-radius: 0 !default;
2017-12-06 09:40:30 +01:00
// Components: buttons, badges, alerts color variants list
// Convention is: name - background-color - color - border
2017-07-31 16:01:20 +02:00
$variants-list: (
2017-10-13 10:59:40 +02:00
(primary, $color-primary, $white, none),
(success, $color-success, $white, none),
2017-12-18 17:44:07 +01:00
(info, $color-info, $black, none),
(warning, $color-warning, $black, none),
2017-10-13 10:59:40 +02:00
(danger, $color-danger, $white, none),
(inverse, $color-inverse, $white, none),
(ghost, $color-ghost, $white, 0 0 0 1px $white inset)
2017-10-31 12:01:39 +01:00
) !default;