Customize everything

Fury develops with customize everything mind. instead of overwriting bootstrap scss variable we extend bootstrap scss which results 30% less css code with robust options. Fury extend bootstrap variables so go to ./src/scss/_variables.scss and play with it by changing variable value :)

Color scheme

Beside theme basic theme color Fury come with cool gradient color scheme. all color settings will find ./src/scss/_variables.scss

              
$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;

$grays: () !default;
// stylelint-disable-next-line scss/dollar-variable-default
$grays: map-merge(
(
"100": $gray-100,
"200": $gray-200,
"300": $gray-300,
"400": $gray-400,
"500": $gray-500,
"600": $gray-600,
"700": $gray-700,
"800": $gray-800,
"900": $gray-900
),
$grays
);

$primary: #FC3997 ;
$secondary: #933AFE ;
$success: #0ECD78 ;
$info: #0b95ff ;
$info-dark: #0b53ff ;
$warning: #FF8F1E ;
$danger: #fd443e ;
$light: #fafbfc ;
$dark: #272b41 ;

$theme-colors: () ;
// stylelint-disable-next-line scss/dollar-variable-default
$theme-colors: map-merge(
(
"primary": $primary,
"secondary": $secondary,
"success": $success,
"info": $info,
"info-dark": $info-dark,
"warning": $warning,
"danger": $danger,
"light": $light,
"dark": $dark
),
$theme-colors
);

// Theme gradient colors
$theme-gradient-colors:(
primary:(
direction:right,
start:#FC3997 30%,
end:#FF6F41
),
secondary:(
direction:right,
start:#682DEF,
end:#aa29f0
),
info:(
direction:right,
start:#0B53FF,
end:#24D4FF
),
success:(
direction:right,
start:#05A55E,
end:#06DF99
),
warning:(
direction:right,
start:#FF6F41,
end:#ffae46
),
danger:(
direction:right,
start:#ff0800,
end:#ff6863
)
);


$social-colors:(
facebook: #3a559d,
twitter: #56aced,
linkedin: #067bb5,
pinterest: #C92228,
youtube: #fe0302,
instagram: #3f719a,
google-plus: #de5246,
github: #414141
) !default;
              
            

Minify js and css

To Reduce server request and improved page speed drastically all third-party plugin bundle in ../dist/assets/{css/js}/vendors.bundle.{css/js} If you wanna add or exclude from bundle use gulp task concatcss/concatcjs