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