Sha256: f6e5208d69e13a7bd9ea4a7600c3e66d3c86ff895a0d64715291d377a6a673fe

Contents?: true

Size: 1.99 KB

Versions: 4

Compression:

Stored size: 1.99 KB

Contents

/* Variables.less
 * Variables to customize the look and feel of Bootstrap
 * ----------------------------------------------------- */

// Links
$linkColor:         #0069d6 !default;
$linkColorHover:    darken($linkColor, 15) !default;

// Grays
$black:             #000 !default;
$grayDark:          lighten($black, 25%) !default;
$gray:              lighten($black, 50%) !default;
$grayLight:         lighten($black, 75%) !default;
$grayLighter:       lighten($black, 90%) !default;
$white:             #fff !default;

// Accent Colors
$blue:              #049CDB !default;
$blueDark:          #0064CD !default;
$green:             #46a546 !default;
$red:               #9d261d !default;
$yellow:            #ffc40d !default;
$orange:            #f89406 !default;
$pink:              #c3325f !default;
$purple:            #7a43b6 !default;

// Baseline grid
$basefont:          13px !default;
$baseline:          18px !default;

// Griditude
// Modify the grid styles in mixins.less
$gridColumns:       16 !default;
$gridColumnWidth:   40px !default;
$gridGutterWidth:   20px !default;
$extraSpace:        ($gridGutterWidth * 2) !default; // For our grid calculations
$siteWidth:         ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1)) !default;

// Color Scheme
// Use this to roll your own color schemes if you like (unused by Bootstrap by default)
$baseColor:         $blue !default;                  // Set a base color
$complement:        spin($baseColor, 180) !default;  // Determine a complementary color
$split1:            spin($baseColor, 158) !default;  // Split complements
$split2:            spin($baseColor, -158) !default;
$triad1:            spin($baseColor, 135) !default;  // Triads colors
$triad2:            spin($baseColor, -135) !default;
$tetra1:            spin($baseColor, 90) !default;   // Tetra colors
$tetra2:            spin($baseColor, -90) !default;
$analog1:           spin($baseColor, 22) !default;   // Analogs colors
$analog2:           spin($baseColor, -22) !default;

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bootstrap-sass-1.4.4 vendor/assets/stylesheets/bootstrap/variables.css.scss
bootstrap-sass-1.4.3 vendor/assets/stylesheets/bootstrap/variables.css.scss
bootstrap-sass-1.4.2 vendor/assets/stylesheets/bootstrap/variables.css.scss
bootstrap-sass-1.4.1 vendor/assets/stylesheets/bootstrap/variables.css.scss