Sha256: 40fc33f3d4ff43c86ed29d5789f80a2eeb80efe3b56579aef533227ee141fafe

Contents?: true

Size: 1.51 KB

Versions: 1

Compression:

Stored size: 1.51 KB

Contents

// Theme palette
// Change these values to customise colour palettes

$primary: (
  color: $material-color-purple-500,
  dark:  $material-color-purple-700,
  light: $material-color-purple-100
) !default;

$secondary: (
  color: $material-color-pink-a200,
  dark:  $material-color-pink-a400,
  light: $material-color-pink-a100
) !default;

$danger: (
  color: $material-color-red-500,
  dark:  $material-color-red-700,
  light: $material-color-red-100
) !default;

$info: (
  color: $material-color-blue-500,
  dark:  $material-color-blue-700,
  light: $material-color-blue-100
) !default;

$success: (
  color: $material-color-green-500,
  dark:  $material-color-green-700,
  light: $material-color-green-100
) !default;

$warning: (
  color: $material-color-orange-500,
  dark:  $material-color-orange-700,
  light: $material-color-orange-100
) !default;

$dark: (
  color: $material-color-grey-800,
  dark:  $material-color-grey-900,
  light: $material-color-grey-600
) !default;

$light: (
  color: $material-color-grey-100,
  dark:  $material-color-grey-300,
  light: $material-color-grey-050
) !default;

$theme-colors: () !default;
$theme-colors: map-merge(
  (
    'primary':   $primary,
    'secondary': $secondary,
    'danger':    $danger,
    'info':      $info,
    'success':   $success,
    'warning':   $warning,
    'dark':      $dark,
    'light':     $light
  ),
  $theme-colors
);

$yiq-contrasted-threshold: 150 !default;
$yiq-text-dark:            $black-primary !default;
$yiq-text-light:           $white-primary !default;

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
material-sass-4.0.0 assets/stylesheets/material/variables/_palette.scss