stylus 手写笔.button

手写笔.button

button.styl
.button
	display inline-block
	border none
	color #fff
	text-decoration none
	background-color accentColor
	padding 15px 45px
	font-size 13px
	text-transform uppercase
	font-weight 600
	letter-spacing 3px
	border-radius 2px
	text-align center
	position relative
	outline none
	transition background-color .1s ease
	&::after
		transition background-color .2s ease
		position absolute
		content ''
		height 4px
		bottom 0
		width 100%
		background-color darken(accentColor, 50%)
		opacity .18
		border-bottom-left-radius 2px
		border-bottom-right-radius 2px
		left 0
	&:focus, &:hover
		text-decoration none
		color #fff
	&:hover
		background-color: lighten(accentColor, 5%)
		&::after
			opacity .22
	&:active
		background-color darken(accentColor, 5%)
		&::after
			opacity .32

stylus 手写笔foreach循环示例,标题等

手写笔foreach循环示例,标题等

foreach.styl
// Loop through multiple heading tags with stylus without having to write each one out traditionally.

for $i in (1..6)
    h{$i}
        color #333


Or example from stackoverflow:

for $i in (1..6)
    h{$i}
        &:before
            content "h" + $i

// http://stackoverflow.com/questions/43259539/not-working-stylus-heading-loop-before-content 

stylus 唱针

唱针

text-stroke.styl
stroke(shadowWidth, shadowSpread, color)
	text-shadow: -1 * shadowWidth -1 * shadowWidth shadowSpread color, shadowWidth -1 * shadowWidth shadowSpread color, -1 * shadowWidth shadowWidth shadowSpread color, shadowWidth shadowWidth shadowSpread color

stylus 我喜欢的颜色

我喜欢的颜色

colours.styl
pink = #FF0198 // Hollywood Cerise
yellow = #FFB617 // My Sin
purple = #6E27C5 // Purple Heart
orange = #FF6600 // Blaze Orange
blue = #01C1D6 // Robin's Egg Blue
java = #1CBCD2 // Java
sun = #FAB319 // Sun
affair = #69479E // Affair
flamingo = #F16623 // Flamingo
minsk = #2E2E86 // Minsk
pomegranate = #EE362C // Pomegranate
redViolet = #EB238E // Red Violet
sushi = #7CC142 // Sushi
bombay = #ADADAF // Bombay

stylus 汉堡动画(开放)为bootstrap 3

汉堡动画(开放)为bootstrap 3

bs3-hamburger open.styl
.navbar-default
	// hamburger animation
	.navbar-toggle:hover span,
	.navbar-toggle[aria-expanded="true"] span
		&:nth-of-type(2)
			transform translate(0, -3px) 
			transition 0.5s ease
		&:nth-of-type(4)
			transform translate(0, 3px)  
			transition 0.5s ease
	.navbar-toggle[aria-expanded="false"] span	
		&:nth-of-type(2)
			transform translate(0,0)
		&:nth-of-type(4)
			transform translate(0,0)
	// end hamburger

stylus colors.styl

colors.styl
// -------- Grays --------
$gray-000        = #fafbfc
$gray-100        = #f6f8fa
$gray-200        = #e1e4e8
$gray-300        = #d1d5da
$gray-400        = #959da5
$gray-500        = #6a737d
$gray-600        = #586069
$gray-700        = #444d56
$gray-800        = #2f363d
$gray-900        = #24292e

// -------- Blue --------
$blue-000        = #f1f8ff
$blue-100        = #dbedff
$blue-200        = #c8e1ff
$blue-300        = #79b8ff
$blue-400        = #2188ff
$blue-500        = #0366d6
$blue-600        = #005cc5
$blue-700        = #044289
$blue-800        = #032f62
$blue-900        = #05264c

// -------- Green --------
$green-000       = #f0fff4
$green-100       = #dcffe4
$green-200       = #bef5cb
$green-300       = #85e89d
$green-400       = #34d058
$green-500       = #28a745
$green-600       = #22863a
$green-700       = #176f2c
$green-800       = #165c26
$green-900       = #144620

// -------- Yellow --------
$yellow-000      = #fffdef
$yellow-100      = #fffbdd
$yellow-200      = #fff5b1
$yellow-300      = #ffea7f
$yellow-400      = #ffdf5d
$yellow-500      = #ffd33d
$yellow-600      = #f9c513
$yellow-700      = #dbab09
$yellow-800      = #b08800
$yellow-900      = #735c0f

// -------- Orange --------
$orange-000      = #fff8f2
$orange-100      = #ffebda
$orange-200      = #ffd1ac
$orange-300      = #ffab70
$orange-400      = #fb8532
$orange-500      = #f66a0a
$orange-600      = #e36209
$orange-700      = #d15704
$orange-800      = #c24e00
$orange-900      = #a04100

// -------- Red --------
$red-000         = #ffeef0
$red-100         = #ffdce0
$red-200         = #fdaeb7
$red-300         = #f97583
$red-400         = #ea4a5a
$red-500         = #d73a49
$red-600         = #cb2431
$red-700         = #b31d28
$red-800         = #9e1c23
$red-900         = #86181d

// -------- Purple --------
$purple-000      = #f5f0ff
$purple-100      = #e6dcfd
$purple-200      = #d1bcf9
$purple-300      = #b392f0
$purple-400      = #8a63d2
$purple-500      = #6f42c1
$purple-600      = #5a32a3
$purple-700      = #4c2889
$purple-800      = #3a1d6e
$purple-900      = #29134e

stylus

districts.styl
@import '__'

$districts__cols = 3
$districts__width = _grid_value($grid__cols / $districts__cols)
$districts__offset = 15px
$districts__border-width = 1px
$districts__border-color = #e2e2e2 // @todo нет в константах
$districts__inner-offset = 24px

$districts__tablet__cols = 2
$districts__tablet__width = _grid_value($grid__cols / $districts__tablet__cols)
$districts__tablet__offset = 10px

$districts__mobile__cols = 1
$districts__mobile__width = _grid_value($grid__cols / $districts__mobile__cols)
$districts__mobile__offset = 0px
$districts__mobile__inner-offset = 14px

.districts
  font-size: 0
  margin: 0 (-($districts__offset)) 0

  +media($_b__tablet)
    margin: 0 (-($districts__tablet__offset)) 0

  +media($_b__mobile)
    margin: 0 (-($container__mobile__offset)) 0
    padding-bottom: 8px
    border-bottom: 1px solid #e2e2e2

  &__list
    display: inline-block
    vertical-align: top
    width: $districts__width
    padding: 0 $districts__offset

    +media($_b__tablet)
      width: $districts__tablet__width
      padding: 0 $districts__tablet__offset

    +media($_b__mobile)
      width: 100%
      padding: $districts__mobile__offset

      &:nth-child(1n + 4)
        display: none

  &__item
    display: inline-block
    border: $districts__border-width solid $districts__border-color
    padding-bottom: 8px
    margin-bottom: 30px
    cursor: pointer

    +media($_b__mobile)
      border: 0
      margin-bottom: 1px

  &__image
    position: relative
  //height: 240px
    width: 100%
    margin: -($districts__border-width)
    margin-bottom: 19px
    padding: 0 $districts__border-width
    box-sizing: content-box
    responsive-ratio(320px, 240px)

    &::after
      content: ''
      absolute: null 0 0 0
      height: 60px
      background: linear-gradient(to bottom, rgba($_c__black, 0) 0%, rgba($_c__black, 0.7) 100%)

    & > img
      absolute: 0 null null 0
      width: 100%
      height: 100%

    +media($_b__mobile)
      padding-left: 0
      padding-right: 0

  &__caption
    display: block
    position: absolute
    left: $districts__inner-offset
    bottom: 20px
    font-family: $_f__roboto-light
    font-size: 22px
    line-height: @font-size
    color: $_c__white
    z-index: 1

    +media($_b__mobile)
      left: $districts__mobile__inner-offset

  &__title
    display: block
    padding-left: $districts__inner-offset
    font-size: 16px
    line-height: 24px
    color: $_c__black
    font-family: $_f__roboto-light

    +media($_b__mobile)
      padding-left: $districts__mobile__inner-offset

  &__date
    display: block
    padding-left: $districts__inner-offset
    font-size: 13px
    line-height: @font-size
    font-family: $_f__roboto-light
    color: $_c__gray2
    margin-top: 6px
    margin-bottom: 21px

    +media($_b__mobile)
      padding-left: $districts__mobile__inner-offset

  &__row
    font-size: 0
    padding-left: $districts__inner-offset

    +media($_b__mobile)
      padding-left: $districts__mobile__inner-offset

  &__size,
  &__price
    width: 50%
    display: inline-block
    font-size: 16px
    line-height: 40px
    font-family: $_f__roboto-light
    color: $_c__black

    .sup
      font-size: 11px
      position: relative
      left: -4px
      top: -4px

  &__price
    padding-left: 19px // @todo такой вот магический отступ

    +media($_b__mobile)
      padding-left: 34px

    &_empty

      &::before
        content: ''
        display: inline-block
        vertical-align: middle
        width: 24px
        height: 1px
        background-color: $_c__black
        margin-top: 4px

stylus 光滑的滑块

光滑的滑块

index.jade
http://kenwheeler.github.io/slick/

bower i slick-carousel --save-dev

link(rel="stylesheet", href="bower/slick-carousel/slick/slick.css")
link(rel="stylesheet", href="bower/slick-carousel/slick/slick-theme.css")
script(src='bower/slick-carousel/slick/slick.js')

//.slider-wrap--inarrow - пагинация внутри 
//.slider-wrap--simple - пагинация снаружи

.slider-wrap
	.slider-control.slider-control--left
		+icon("arrow-left","icon")
	.slider-control.slider-control--right
		+icon("arrow-right","icon")
	.slider.slider-item
			.slider-el 
			
script.js
// ==== simple ===

$('.main-slider').slick({
	slidesToShow: 1,
	speed: 500,
	dots:true,
	arrows:false,
	//autoplay: true,
	//fade: true
	//autoplaySpeed: 8000, time between
	customPaging : function(slider, i) {
		return '<span class="dot"></span>';
	}
});
// ==== simple end ===

// === custom arrow el === 
$('.slider-control--right').click(function(){
	$(this).closest(".slider-wrap").find(".slider-item").slick('slickNext');
});

$('.slider-control--left').click(function(){
	$(this).closest(".slider-wrap").find(".slider-item").slick('slickPrev');
});
// custom arrow el === end

// === breakpoint ===
$('.slider').slick({
  slidesToShow: 3,
  speed: 500,
	responsive: [
    {
      breakpoint: 768,
      settings: {
        arrows: false,
        centerMode: true,
        centerPadding: '40px',
        slidesToShow: 3
      }
    },
    {
      breakpoint: 480,
      settings: {
        arrows: false,
        centerMode: true,
        centerPadding: '40px',
        slidesToShow: 1
      }
    }
  ]
});
// === breakpoint end ===

// === Init only mobile ===
var sliderMobile = function(){
	if( currentSize < 641){
		$('.slider').not('.slick-initialized').slick({
			responsive: [
				{
					breakpoint: 9999,
					settings: "unslick"
				},
				{
					breakpoint: 640,
						settings: {
							slidesToShow: 1,
							slidesToScroll: 1,
							infinite: true,
							prevArrow: false,
							nextArrow: false,
							dots: true
					}
				}
			]
		});
	}
};

sliderMobile();

$(window).resize(function(){
	var currentSize = $(window).width();
	sliderMobile();
	return currentSize;
});
// === Init only mobile  end ===

// === vertical slider ===
	var initSlider = function(){
		$('.basket-container').not('.slick-initialized').slick({
		  slidesToShow: 2,
		  fade:true,
		  autoplay: false,
		  speed: 500,
		  vertical:true,
		  arrows: true,
		  prevArrow: $('.header__sub-arrow-up'), // для сторонней навигации
		  nextArrow: $('.header__sub-arrow-down'),
		  //prevArrow:'<svg class="slider-control"><use xlink:href="#arrow-up"></use></svg>',
			//nextArrow:'<svg class="slider-control"><use xlink:href="#arrow-down"></use></svg>',
		  verticalSwiping:true,
		  infinite:false,
		  responsive: [
                {
                    breakpoint: 1024,
                    settings: "unslick"
                }
            ]
		});
	};
	initSlider();

// === vertical slider end ===

// === ajax img load ===
img(data-lazy="img/img.jpg", alt="")
	$('.slider').slick({
		slidesToShow: 1,
		autoplay: false,
		speed: 500,
		arrows: false,
		lazyLoad: 'ondemand',
	});
// === ajax img load end ===

// === Выравнивание слайдов по высоте ===
slickHeight = function() {
	var stHeight = $(' name-slider .slick-track').height();
	$('name-slider__el').css('height', stHeight + 'px');
};
slickHeight();

$('window').resize(function(){
	sickHeight();
});
// === Выравнивание слайдов по высоте end ===

// === Номера слайдов === 

	//Номер активного слайда
	$('.slider').on("afterChange", function () {
		$('.slider').slick('slickCurrentSlide');
	});

	//Перейти на нужный слайд
	$('.slider').slick('slickGoTo', 2 //Номер на который нужно перейти);

	// Нумерация слайдов и их изменение 1/3 = > 2/3
	$('.slider').on('init reInit afterChange', function (event, slick, currentSlide, nextSlide) {
	  var i = (currentSlide ? currentSlide : 0) + 1;
	  $(this).find('.numbers').text(i + ' / ' + slick.slideCount);
	});

// === Номера слайдов  end ===
style.styl
// === убираем выделения активности при клик ===
.slick-slide
	&:hover
		outline none!important
	&:active
		outline none!important
	&:focus
		outline none!important
// === убираем выделения активности при клике end ===

// === for custom navigation === 
.slider-wrap
	position relative

//Навигация снаружи
.slider-wrap--simple
	.slider-control
		round()
		flex(mid)
		tr(all)
		size 40px
		background: white
		position: absolute
		top 50%
		margin-top: -20px
		box-shadow 0px 2px 10px #c5c2c2
		z-index 10
		cp()
		&:hover
			background: $red
			.icon
				fill white
		.icon
			size 14px
	.slider-control--left
		left -20px
	.slider-control--right
		right -20px
//Навигация снаружи end

//Навигация внутри
.slider-wrap--inarrow
	.slider-control
		flex(mid)
		tr(all)
		position: absolute
		top 50%
		margin-top: -20px
		z-index 10
		padding: 20px 10px
		background: black
		cp()
		opacity: .6
		&:hover
			opacity: 1
			.icon
				fill white
		.icon
			fill white
			size 30px
	.slider-control--left
		left 0
	.slider-control--right
		right 0
//Навигация внутри
// === for custom navigation === 

//=== Внешний вид пагинации ===
.slick-dots
	+below(720px)
		bottom -20px
	width: 100%
	display: flex !important
	align-items: center
	justify-content: center
	bottom -50px
	li
		+below(720px)
			size 10px
			flex(mid)
	.dot
		+below(720px)
			flex(mid)
			size 6px
		background: $mark
		width: 20px
		height: 4px
		display: block
		br(3px)
		opacity: .5
	.slick-active
		.dot
			opacity: 1
//=== Внешний вид пагинации end===

// === Отступы для для слайдов ===
.slick-slide
	margin: 0 30px
.slick-list
	margin: 0 -30px
// === Отступы для для слайдов end ===

stylus 默认color.styl

default-color.styl
navy     = #001f3f
blue     = #0074d9
aqua     = #7fdbff
teal     = #39cccc
olive    = #3d9970
green    = #2ecc40
lime     = #01ff70
yellow   = #ffdc00
orange   = #ff851b
red      = #ff4136
fuchsia  = #f012be
purple   = #b10dc9
maroon   = #85144b
white    = #ffffff
silver   = #dddddd
gray     = #aaaaaa
black    = #111111

stylus 材料设计colors.styl

material-design-colors.styl
// https://material.google.com/style/color.html#

// Red 
$red-50 = #FFEBEE
$red-100 = #FFCDD2
$red-200 = #EF9A9A
$red-300 = #E57373
$red-400 = #EF5350
$red-500 = #F44336
$red-600 = #E53935
$red-700 = #D32F2F
$red-800 = #C62828
$red-900 = #B71C1C
$red-A100 = #FF8A80
$red-A200 = #FF5252
$red-A400 = #FF1744
$red-A700 = #D50000

// Pink
$pink-50 = #FCE4EC
$pink-100 = #F8BBD0
$pink-200 = #F48FB1
$pink-300 = #F06292
$pink-400 = #EC407A
$pink-500 = #E91E63
$pink-600 = #D81B60
$pink-700 = #C2185B
$pink-800 = #AD1457
$pink-900 = #880E4F
$pink-A100 = #FF80AB
$pink-A200 = #FF4081
$pink-A400 = #F50057
$pink-A700 = #C51162

// Purple
$purple-50 = #F3E5F5
$purple-100 = #E1BEE7
$purple-200 = #CE93D8
$purple-300 = #BA68C8
$purple-400 = #AB47BC
$purple-500 = #9C27B0
$purple-600 = #8E24AA
$purple-700 = #7B1FA2
$purple-800 = #6A1B9A
$purple-900 = #4A148C
$purple-A100 = #EA80FC
$purple-A200 = #E040FB
$purple-A400 = #D500F9
$purple-A700 = #AA00FF

// Deep Purple
deep-purple-50 = #EDE7F6
deep-purple-100 = #D1C4E9
deep-purple-200 = #B39DDB
deep-purple-300 = #9575CD
deep-purple-400 = #7E57C2
deep-purple-500 = #673AB7
deep-purple-600 = #5E35B1
deep-purple-700 = #512DA8
deep-purple-800 = #4527A0
deep-purple-900 = #311B92
deep-purple-A100 = #B388FF
deep-purple-A200 = #7C4DFF
deep-purple-A400 = #651FFF
deep-purple-A700 = #6200EA

// Indigo
$indigo-50 = #E8EAF6
$indigo-100 = #C5CAE9
$indigo-200 = #9FA8DA
$indigo-300 = #7986CB
$indigo-400 = #5C6BC0
$indigo-500 = #3F51B5
$indigo-600 = #3949AB
$indigo-700 = #303F9F
$indigo-800 = #283593
$indigo-900 = #1A237E
$indigo-A100 = #8C9EFF
$indigo-A200 = #536DFE
$indigo-A400 = #3D5AFE
$indigo-A700 = #304FFE

// Blue
$blue-50 = #E3F2FD
$blue-100 = #BBDEFB
$blue-200 = #90CAF9
$blue-300 = #64B5F6
$blue-400 = #42A5F5
$blue-500 = #2196F3
$blue-600 = #1E88E5
$blue-700 = #1976D2
$blue-800 = #1565C0
$blue-900 = #0D47A1
$blue-A100 = #82B1FF
$blue-A200 = #448AFF
$blue-A400 = #2979FF
$blue-A700 = #2962FF

// Light Blue
$light-blue-50 = #E1F5FE
$light-blue-100 = #B3E5FC
$light-blue-200 = #81D4FA
$light-blue-300 = #4FC3F7
$light-blue-400 = #29B6F6
$light-blue-500 = #03A9F4
$light-blue-600 = #039BE5
$light-blue-700 = #0288D1
$light-blue-800 = #0277BD
$light-blue-900 = #01579B
$light-blue-A100 = #80D8FF
$light-blue-A200 = #40C4FF
$light-blue-A400 = #00B0FF
$light-blue-A700 = #0091EA

// Cyan
$cyan-50 = #E0F7FA
$cyan-100 = #B2EBF2
$cyan-200 = #80DEEA
$cyan-300 = #4DD0E1
$cyan-400 = #26C6DA
$cyan-500 = #00BCD4
$cyan-600 = #00ACC1
$cyan-700 = #0097A7
$cyan-800 = #00838F
$cyan-900 = #006064
$cyan-A100 = #84FFFF
$cyan-A200 = #18FFFF
$cyan-A400 = #00E5FF
$cyan-A700 = #00B8D4

// Teal
$teal-50 = #E0F2F1
$teal-100 = #B2DFDB
$teal-200 = #80CBC4
$teal-300 = #4DB6AC
$teal-400 = #26A69A
$teal-500 = #009688
$teal-600 = #00897B
$teal-700 = #00796B
$teal-800 = #00695C
$teal-900 = #004D40
$teal-A100 = #A7FFEB
$teal-A200 = #64FFDA
$teal-A400 = #1DE9B6
$teal-A700 = #00BFA5

// Green
$green-50 = #E8F5E9
$green-100 = #C8E6C9
$green-200 = #A5D6A7
$green-300 = #81C784
$green-400 = #66BB6A
$green-500 = #4CAF50
$green-600 = #43A047
$green-700 = #388E3C
$green-800 = #2E7D32
$green-900 = #1B5E20
$green-A100 = #B9F6CA
$green-A200 = #69F0AE
$green-A400 = #00E676
$green-A700 = #00C853

// Light Green
$light-green-50 = #F1F8E9
$light-green-100 = #DCEDC8
$light-green-200 = #C5E1A5
$light-green-300 = #AED581
$light-green-400 = #9CCC65
$light-green-500 = #8BC34A
$light-green-600 = #7CB342
$light-green-700 = #689F38
$light-green-800 = #558B2F
$light-green-900 = #33691E
$light-green-A100 = #CCFF90
$light-green-A200 = #B2FF59
$light-green-A400 = #76FF03
$light-green-A700 = #64DD17

// Lime
$lime-50 = #F9FBE7
$lime-100 = #F0F4C3
$lime-200 = #E6EE9C
$lime-300 = #DCE775
$lime-400 = #D4E157
$lime-500 = #CDDC39
$lime-600 = #C0CA33
$lime-700 = #AFB42B
$lime-800 = #9E9D24
$lime-900 = #827717
$lime-A100 = #F4FF81
$lime-A200 = #EEFF41
$lime-A400 = #C6FF00
$lime-A700 = #AEEA00

// Yellow
$yellow-50 = #FFFDE7
$yellow-100 = #FFF9C4
$yellow-200 = #FFF59D
$yellow-300 = #FFF176
$yellow-400 = #FFEE58
$yellow-500 = #FFEB3B
$yellow-600 = #FDD835
$yellow-700 = #FBC02D
$yellow-800 = #F9A825
$yellow-900 = #F57F17
$yellow-A100 = #FFFF8D
$yellow-A200 = #FFFF00
$yellow-A400 = #FFEA00
$yellow-A700 = #FFD600

// Amber
$amber-50 = #FFF8E1
$amber-100 = #FFECB3
$amber-200 = #FFE082
$amber-300 = #FFD54F
$amber-400 = #FFCA28
$amber-500 = #FFC107
$amber-600 = #FFB300
$amber-700 = #FFA000
$amber-800 = #FF8F00
$amber-900 = #FF6F00
$amber-A100 = #FFE57F
$amber-A200 = #FFD740
$amber-A400 = #FFC400
$amber-A700 = #FFAB00

// Orange
$orange-50 = #FFF3E0
$orange-100 = #FFE0B2
$orange-200 = #FFCC80
$orange-300 = #FFB74D
$orange-400 = #FFA726
$orange-500 = #FF9800
$orange-600 = #FB8C00
$orange-700 = #F57C00
$orange-800 = #EF6C00
$orange-900 = #E65100
$orange-A100 = #FFD180
$orange-A200 = #FFAB40
$orange-A400 = #FF9100
$orange-A700 = #FF6D00

// Deep Orange
$deep-orange-50 = #FBE9E7
$deep-orange-100 = #FFCCBC
$deep-orange-200 = #FFAB91
$deep-orange-300 = #FF8A65
$deep-orange-400 = #FF7043
$deep-orange-500 = #FF5722
$deep-orange-600 = #F4511E
$deep-orange-700 = #E64A19
$deep-orange-800 = #D84315
$deep-orange-900 = #BF360C
$deep-orange-A100 = #FF9E80
$deep-orange-A200 = #FF6E40
$deep-orange-A400 = #FF3D00
$deep-orange-A700 = #DD2C00

// Brown
$brown-50 = #EFEBE9
$brown-100 = #D7CCC8
$brown-200 = #BCAAA4
$brown-300 = #A1887F
$brown-400 = #8D6E63
$brown-500 = #795548
$brown-600 = #6D4C41
$brown-700 = #5D4037
$brown-800 = #4E342E
$brown-900 = #3E2723

// Grey
$grey-50 = #FAFAFA
$grey-100 = #F5F5F5
$grey-200 = #EEEEEE
$grey-300 = #E0E0E0
$grey-400 = #BDBDBD
$grey-500 = #9E9E9E
$grey-600 = #757575
$grey-700 = #616161
$grey-800 = #424242
$grey-900 = #212121

// Blue Grey
$blue-grey-50 = #ECEFF1
$blue-grey-100 = #CFD8DC
$blue-grey-200 = #B0BEC5
$blue-grey-300 = #90A4AE
$blue-grey-400 = #78909C
$blue-grey-500 = #607D8B
$blue-grey-600 = #546E7A
$blue-grey-700 = #455A64
$blue-grey-800 = #37474F
$blue-grey-900 = #263238