From 77787a4db1b145572c9bcc98072af91a3236010e Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Sun, 3 Mar 2019 09:49:11 +0100 Subject: [PATCH] Update _variables.sass --- sass/abstracts/_variables.sass | 41 ++++------------------------------ 1 file changed, 4 insertions(+), 37 deletions(-) diff --git a/sass/abstracts/_variables.sass b/sass/abstracts/_variables.sass index 6d72f23..9f1c3e0 100644 --- a/sass/abstracts/_variables.sass +++ b/sass/abstracts/_variables.sass @@ -2,45 +2,12 @@ // This file contains all application-wide Sass variables. // ----------------------------------------------------------------------------- -/// Regular font family -/// @type List -$text-font-stack: "Open Sans", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif !default - -/// Code (monospace) font family -/// @type List -$code-font-stack: "Courier New", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Monaco", monospace !default - -/// Copy text color -/// @type Color -$text-color: rgb(34, 34, 34) !default - -/// Main brand color -/// @type Color -$brand-color: rgb(229, 0, 80) !default - -/// Light grey -/// @type Color -$light-grey: rgb(237, 237, 237) !default - -/// Medium grey -/// @type Color -$mid-grey: rgb(153, 153, 153) !default - -/// Dark grey -/// @type Color -$dark-grey: rgb(68, 68, 68) !default - -/// Container's maximum width +// Sizes /// @type Length $max-width: 1180px !default - /// Breakpoints map -/// @prop {String} keys - Keys are identifiers mapped to a given length -/// @prop {Map} values - Values are actual breakpoints expressed in pixels $breakpoints: ("small": 320px, "medium": 768px, "large": 1024px) !default -/// Relative or absolute URL where all assets are served from -/// @type String -/// @example scss - When using a CDN -/// $base-url: 'http://cdn.example.com/assets/'; -$base-url: "/assets/" !default +// Colours +$color-black: #000 +$color-white: #fff