{"version":3,"sourceRoot":"","sources":["../../_sass/_02_settings_typography.scss","../../_sass/_03_settings_mixins_media_queries.scss","atom.scss","../../_sass/_01_settings_colors.scss"],"names":[],"mappings":"AAuDA,wBAPoB,QAQpB,wBAPoB,QAQpB,wBAPoB,QAQpB,wBAPoB,OAQpB,wBAPoB,QC8RlB,wBACE,sBAGF,yBACE,4BACA,UAGF,8BACE,kDACA,UAGF,0BACE,qDACA,eAGF,+BACE,0EACA,eAGF,yBACE,qDACA,eAGF,8BACE,0EACA,eAGF,0BACE,qDACA,eAGF,+BACE,2EACA,eAGF,2BACE,sDACA,gBAGF,yCACE,kBC1XJ,EACC,cAGD,MACC,WACA,WCIqB,QDHrB,MCCqB,iBHMG,mDEFxB,WACC,kBACA,wDACA,0CACA,mBACA,mBACA,mBACC,yBACA,oBAED,kBACC,sFACA,cACA,YACA,iBCJmB,QDKnB,WACA,oBACA,kBACA,uBAIF,wEAMC,aAIF,MACC,cACA,gCACA,iBACC,mBAGD,YACC,MC7BoB,QD8BpB,YFtCkB,8BEuClB,UFhBkB,QEiBlB,mBAGD,kBACC,mBACA,MC1CoB,QD6CrB,cACC,MClBoB,QDmBpB,gBAGD,cACC,eAGD,mEAKC","sourcesContent":["@charset \"utf-8\";\n/* TOC – Typography variables\n\nModular Scale › http://www.modularscale.com//?16,36&px&1.25&web&table\n\n- Fonts\n- Font Weight\n- Font Size Variables\n\n*/\n\n@import \"functions\"; // Allows the use of rem-calc() or lower-bound() in your settings\n\n\n\n/* Fonts\n------------------------------------------------------------------- */\n\n$base-font-size: 16px;\n$rem-base: $base-font-size;\n// $base-line-height is 24px while $base-font-size is 16px\n$base-line-height: 1.5 !default;\n\n\n$font-family-sans-serif: \"Lato\", \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n$font-family-serif: \"Volkhov\", Georgia, Times, serif;\n$font-family-monospace: \"Lucida Console\", Monaco, monospace;\n\n$body-font-family: $font-family-sans-serif;\n$body-font-weight: normal;\n$body-font-style: normal;\n\n$header-font-family: $font-family-serif;\n\n\n\n/* Font Weight\n------------------------------------------------------------------- */\n\n$font-weight-normal: normal;\n$font-weight-bold: bold;\n\n\n\n/* Font Size Variables\n------------------------------------------------------------------- */\n\n$font-size-p:    \t$base-font-size;\n$font-size-h1:      2.441em;\n$font-size-h2:      1.953em;\n$font-size-h3:      1.563em;\n$font-size-h4:      1.25em;\n$font-size-h5:      1.152em;\n$font-size-small:   0.8em;\n\n.font-size-h1   { font-size: $font-size-h1; }\n.font-size-h2   { font-size: $font-size-h2; }\n.font-size-h3   { font-size: $font-size-h3; }\n.font-size-h4   { font-size: $font-size-h4; }\n.font-size-h5   { font-size: $font-size-h5; }\n","@charset \"utf-8\";\n// Foundation by ZURB\n// foundation.zurb.com\n// Licensed under MIT Open Source\n\n//\n// Foundation Variables\n//\n\n// Data attribute namespace\n// styles get applied to [data-mysite-plugin], etc\n$namespace: false !default;\n\n// The default font-size is set to 100% of the browser style sheet (usually 16px)\n// for compatibility with browser-based text zoom or user-set defaults.\n\n// Since the typical default browser font-size is 16px, that makes the calculation for grid size.\n// If you want your base font-size to be different and not have it affect the grid breakpoints,\n// set $rem-base to $base-font-size and make sure $base-font-size is a px value.\n$base-font-size: 100% !default;\n\n\n\n//\n// Global Foundation Mixins\n//\n\n// @mixins\n//\n// We use this to control border radius.\n// $radius - Default: $global-radius || 4px\n@mixin radius($radius: $global-radius) {\n  @if $radius {\n    border-radius: $radius;\n  }\n}\n\n// @mixins\n//\n// We use this to create equal side border radius on elements.\n// $side - Options: left, right, top, bottom\n@mixin side-radius($side, $radius: $global-radius) {\n  @if ($side ==left or $side ==right) {\n    -webkit-border-bottom-#{$side}-radius: $radius;\n    -webkit-border-top-#{$side}-radius: $radius;\n    border-bottom-#{$side}-radius: $radius;\n    border-top-#{$side}-radius: $radius;\n  }\n\n  @else {\n    -webkit-#{$side}-left-radius: $radius;\n    -webkit-#{$side}-right-radius: $radius;\n    border-#{$side}-left-radius: $radius;\n    border-#{$side}-right-radius: $radius;\n  }\n}\n\n// @mixins\n//\n// We can control whether or not we have inset shadows edges.\n// $active - Default: true, Options: false\n@mixin inset-shadow($active: true) {\n  box-shadow: $shiny-edge-size $shiny-edge-color inset;\n\n  @if $active {\n    &:active {\n      box-shadow: $shiny-edge-size $shiny-edge-active-color inset;\n    }\n  }\n}\n\n// @mixins\n//\n// We use this to add transitions to elements\n// $property - Default: all, Options: http://www.w3.org/TR/css3-transitions/#animatable-properties\n// $speed - Default: 300ms\n// $ease - Default:ease-out, Options: http://css-tricks.com/almanac/properties/t/transition-timing-function/\n@mixin single-transition($property: all, $speed: 300ms, $ease: ease-out) {\n  transition: $property $speed $ease;\n}\n\n// @mixins\n//\n// We use this to add box-sizing across browser prefixes\n@mixin box-sizing($type: border-box) {\n  -webkit-box-sizing: $type; // Android < 2.3, iOS < 4\n  -moz-box-sizing: $type; // Firefox < 29\n  box-sizing: $type; // Chrome, IE 8+, Opera, Safari 5.1\n}\n\n// @mixins\n//\n// We use this to create isosceles triangles\n// $triangle-size - Used to set border-size. No default, set a px or em size.\n// $triangle-color - Used to set border-color which makes up triangle. No default\n// $triangle-direction - Used to determine which direction triangle points. Options: top, bottom, left, right\n@mixin css-triangle($triangle-size, $triangle-color, $triangle-direction) {\n  content: \"\";\n  display: block;\n  width: 0;\n  height: 0;\n  border: inset $triangle-size;\n\n  @if ($triangle-direction ==top) {\n    border-color: $triangle-color transparent transparent transparent;\n    border-top-style: solid;\n  }\n\n  @if ($triangle-direction ==bottom) {\n    border-color: transparent transparent $triangle-color transparent;\n    border-bottom-style: solid;\n  }\n\n  @if ($triangle-direction ==left) {\n    border-color: transparent transparent transparent $triangle-color;\n    border-left-style: solid;\n  }\n\n  @if ($triangle-direction ==right) {\n    border-color: transparent $triangle-color transparent transparent;\n    border-right-style: solid;\n  }\n}\n\n// @mixins\n//\n// We use this to create the icon with three lines aka the hamburger icon, the menu-icon or the navicon\n// $width - Width of hamburger icon in rem\n// $left - If false, icon will be centered horizontally || explicitly set value in rem\n// $top - If false, icon will be centered vertically || explicitly set value in rem\n// $thickness - thickness of lines in hamburger icon, set value in px\n// $gap - spacing between the lines in hamburger icon, set value in px\n// $color - icon color\n// $hover-color - icon color during hover\n// $offcanvas - Set to true of @include in offcanvas\n@mixin hamburger($width, $left, $top, $thickness, $gap, $color, $hover-color, $offcanvas) {\n  span::after {\n    content: \"\";\n    position: absolute;\n    display: block;\n    height: 0;\n\n    @if $offcanvas {\n      @if $top {\n        top: $top;\n      }\n\n      @else {\n        top: 50%;\n        margin-top: (-$width/2);\n      }\n\n      @if $left {\n        left: $left;\n      }\n\n      @else {\n        left: ($tabbar-menu-icon-width - $width)/2;\n      }\n    }\n\n    @else {\n      top: 50%;\n      margin-top: -($width/2);\n      #{$opposite-direction}: $topbar-link-padding;\n    }\n\n    box-shadow: 0 0 0 $thickness $color,\n    0 ($gap + $thickness) 0 $thickness $color,\n    0 (2 * $gap + 2*$thickness) 0 $thickness $color;\n    width: $width;\n  }\n\n  span:hover:after {\n    box-shadow:\n      0 0 0 $thickness $hover-color,\n      0 $gap + $thickness 0 $thickness $hover-color,\n      0 (2 * $gap + 2*$thickness) 0 $thickness $hover-color;\n  }\n}\n\n// We use this to do clear floats\n@mixin clearfix {\n\n  &:before,\n  &:after {\n    content: \" \";\n    display: table;\n  }\n\n  &:after {\n    clear: both;\n  }\n}\n\n// @mixins\n//\n// We use this to add a glowing effect to block elements\n// $selector - Used for selector state. Default: focus, Options: hover, active, visited\n// $fade-time - Default: 300ms\n// $glowing-effect-color - Default: fade-out($primary-color, .25)\n@mixin block-glowing-effect($selector: focus, $fade-time: 300ms, $glowing-effect-color: fade-out($primary-color, .25)) {\n  transition: box-shadow $fade-time, border-color $fade-time ease-in-out;\n\n  &:#{$selector} {\n    box-shadow: 0 0 5px $glowing-effect-color;\n    border-color: $glowing-effect-color;\n  }\n}\n\n// @mixins\n//\n// We use this to translate elements in 2D\n// $horizontal: Default: 0\n// $vertical: Default: 0\n@mixin translate2d($horizontal: 0, $vertical: 0) {\n  transform: translate($horizontal, $vertical)\n}\n\n// @mixins\n//\n// Makes an element visually hidden, but accessible.\n// @see http://snook.ca/archives/html_and_css/hiding-content-for-accessibility\n@mixin element-invisible {\n  position: absolute !important;\n  height: 1px;\n  width: 1px;\n  overflow: hidden;\n  clip: rect(1px, 1px, 1px, 1px);\n}\n\n// @mixins\n//\n// Turns off the element-invisible effect.\n@mixin element-invisible-off {\n  position: static !important;\n  height: auto;\n  width: auto;\n  overflow: visible;\n  clip: auto;\n}\n\n\n// We use these to control text direction settings\n$text-direction: ltr !default;\n$default-float: left !default;\n$opposite-direction: right !default;\n\n@if $text-direction ==ltr {\n  $default-float: left;\n  $opposite-direction: right;\n}\n\n@else {\n  $default-float: right;\n  $opposite-direction: left;\n}\n\n// We use these to control inset shadow shiny edges and depressions.\n$shiny-edge-size: 0 1px 0 !default;\n$shiny-edge-color: rgba(#fff, .5) !default;\n$shiny-edge-active-color: rgba(#000, .2) !default;\n\n// We use this to control whether or not CSS classes come through in the gem files.\n$include-html-classes: true !default;\n$include-print-styles: true !default;\n$include-html-global-classes: $include-html-classes !default;\n\n$column-gutter: rem-calc(30) !default;\n\n\n\n\n// d. Media Query Ranges\n// - - - - - - - - - - - - - - - - - - - - - - - - -\n\n$small-range: (\n  0em,\n  40em\n);\n$medium-range: (\n  40.063em,\n  64em\n);\n$large-range: (\n  64.063em,\n  90em\n);\n$xlarge-range: (\n  90.063em,\n  120em\n);\n$xxlarge-range: (\n  120.063em,\n  99999999em\n);\n\n\n$screen: \"only screen\" !default;\n\n$landscape: \"#{$screen} and (orientation: landscape)\" !default;\n$portrait: \"#{$screen} and (orientation: portrait)\" !default;\n\n$small-up: $screen !default;\n$small-only: \"#{$screen} and (max-width: #{upper-bound($small-range)})\";\n\n$medium-up: \"#{$screen} and (min-width:#{lower-bound($medium-range)})\" !default;\n$medium-only: \"#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})\" !default;\n\n$large-up: \"#{$screen} and (min-width:#{lower-bound($large-range)})\" !default;\n$large-only: \"#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})\" !default;\n\n$xlarge-up: \"#{$screen} and (min-width:#{lower-bound($xlarge-range)})\" !default;\n$xlarge-only: \"#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})\" !default;\n\n$xxlarge-up: \"#{$screen} and (min-width:#{lower-bound($xxlarge-range)})\" !default;\n$xxlarge-only: \"#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})\" !default;\n\n// Legacy\n$small: $medium-up;\n$medium: $medium-up;\n$large: $large-up;\n\n//We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet\n$cursor-auto-value: auto !default;\n$cursor-crosshair-value: crosshair !default;\n$cursor-default-value: default !default;\n$cursor-pointer-value: pointer !default;\n$cursor-help-value: help !default;\n$cursor-text-value: text !default;\n\n\n@include exports(\"global\") {\n\n  // Meta styles are included in all builds, as they are a dependency of the Javascript.\n  // Used to provide media query values for javascript components.\n  // Forward slash placed around everything to convince PhantomJS to read the value.\n\n  meta.foundation-version {\n    font-family: \"/5.5.0/\";\n  }\n\n  meta.foundation-mq-small {\n    font-family: \"/\" + unquote($small-up) + \"/\";\n    width: lower-bound($small-range);\n  }\n\n  meta.foundation-mq-small-only {\n    font-family: \"/\" + unquote($small-only) + \"/\";\n    width: lower-bound($small-range);\n  }\n\n  meta.foundation-mq-medium {\n    font-family: \"/\" + unquote($medium-up) + \"/\";\n    width: lower-bound($medium-range);\n  }\n\n  meta.foundation-mq-medium-only {\n    font-family: \"/\" + unquote($medium-only) + \"/\";\n    width: lower-bound($medium-range);\n  }\n\n  meta.foundation-mq-large {\n    font-family: \"/\" + unquote($large-up) + \"/\";\n    width: lower-bound($large-range);\n  }\n\n  meta.foundation-mq-large-only {\n    font-family: \"/\" + unquote($large-only) + \"/\";\n    width: lower-bound($large-range);\n  }\n\n  meta.foundation-mq-xlarge {\n    font-family: \"/\" + unquote($xlarge-up) + \"/\";\n    width: lower-bound($xlarge-range);\n  }\n\n  meta.foundation-mq-xlarge-only {\n    font-family: \"/\" + unquote($xlarge-only) + \"/\";\n    width: lower-bound($xlarge-range);\n  }\n\n  meta.foundation-mq-xxlarge {\n    font-family: \"/\" + unquote($xxlarge-up) + \"/\";\n    width: lower-bound($xxlarge-range);\n  }\n\n  meta.foundation-data-attribute-namespace {\n    font-family: #{$namespace};\n  }\n\n  @if $include-html-global-classes {\n\n    // Must be 100% for off canvas to work\n    html,\n    body {\n      height: 100%;\n    }\n\n    // Set box-sizing globally to handle padding and border widths\n    *,\n    *:before,\n    *:after {\n      @include box-sizing(border-box);\n    }\n\n    html,\n    body {\n      font-size: $base-font-size;\n    }\n\n    // Default body styles\n    body {\n      background: $body-bg;\n      color: $body-font-color;\n      padding: 0;\n      margin: 0;\n      font-family: $body-font-family;\n      font-weight: $body-font-weight;\n      font-style: $body-font-style;\n      line-height: $base-line-height; // Set to $base-line-height to take on browser default of 150%\n      position: relative;\n      cursor: $cursor-auto-value;\n    }\n\n    a:hover {\n      cursor: $cursor-pointer-value;\n    }\n\n    // Grid Defaults to get images and embeds to work properly\n    img {\n      max-width: 100%;\n      height: auto;\n    }\n\n    img {\n      -ms-interpolation-mode: bicubic;\n    }\n\n    #map_canvas,\n    .map_canvas {\n\n      img,\n      embed,\n      object {\n        max-width: none !important;\n      }\n    }\n\n    // Miscellaneous useful HTML classes\n    .left {\n      float: left !important;\n    }\n\n    .right {\n      float: right !important;\n    }\n\n    .clearfix {\n      @include clearfix;\n    }\n\n    // Hide visually and from screen readers\n    .hide {\n      display: none !important;\n      visibility: hidden;\n    }\n\n    // Hide visually and from screen readers, but maintain layout\n    .invisible {\n      visibility: hidden;\n    }\n\n    // Font smoothing\n    // Antialiased font smoothing works best for light text on a dark background.\n    // Apply to single elements instead of globally to body.\n    // Note this only applies to webkit-based desktop browsers and Firefox 25 (and later) on the Mac.\n    .antialiased {\n      -webkit-font-smoothing: antialiased;\n      -moz-osx-font-smoothing: grayscale;\n    }\n\n    // Get rid of gap under images by making them display: inline-block; by default\n    img {\n      display: inline-block;\n      vertical-align: middle;\n    }\n\n    //\n    // Global resets for forms\n    //\n\n    // Make sure textarea takes on height automatically\n    textarea {\n      height: auto;\n      min-height: 50px;\n    }\n\n    // Make select elements 100% width by default\n    select {\n      width: 100%;\n    }\n  }\n}","@charset \"utf-8\";\n\n@import \"functions.scss\";\n\n$include-html-classes: false;\n@import \"01_settings_colors.scss\";\n@import \"02_settings_typography.scss\";\n@import \"03_settings_mixins_media_queries.scss\";\n@import \"04_settings_global.scss\";\n\n* {\n\tdisplay: block;\n}\n\n:root {\n\tmargin: 3em;\n\tbackground: $body-bg;\n\tcolor: $body-font-color;\n\tfont-family: $body-font-family;\n}\n\nfeed {\n\t> title {\n\t\ttext-align: center;\n\t\tcolor: lighten($primary-color, 25%);\n\t\tfont-family: $header-font-family;\n\t\tfont-size: $font-size-h1 * 1.5;\n\t\tfont-weight: bolder;\n\t\t&::before {\n\t\t\tcontent: 'Atom Feed for ';\n\t\t\tfont-weight: initial;\n\t\t}\n\t\t&::after {\n\t\t\tcontent: \"This Atom feed is meant to be used by RSS reader applications and websites.\";\n\t\t\tdisplay: block;\n\t\t\tpadding: 1em;\n\t\t\tbackground-color: $alert-color;\n\t\t\tcolor: #fff;\n\t\t\tfont-family: initial;\n\t\t\tfont-size: initial;\n\t\t\tletter-spacing: initial;\n\t\t}\n\t}\n\t\n\t> id,\n\t> updated,\n\t> subtitle,\n\t> author,\n\t> link,\n\t> generator {\n\t\tdisplay: none;\n\t}\n}\n\nentry {\n\tpadding: 1em 0;\n\tborder-bottom: 1px solid invert($body-bg);\n\t&:last-child {\n\t\tborder-bottom: none;\n\t}\n\n\t> title {\n\t\tcolor: $secondary-color;\n\t\tfont-family: $header-font-family;\n\t\tfont-size: $font-size-h1;\n\t\tmargin-bottom: 0.5em;\n\t}\n\n\t> link::after {\n\t\tcontent: attr(href);\n\t\tcolor: $primary-color;\n\t}\n\n\t> updated {\n\t\tcolor: $grey-5;\n\t\tfont-size: small;\n\t}\n\n\t> summary {\n\t\tmargin-top: 1em;\n\t}\n\n\t> id,\n\t> author,\n\t> category,\n\t> published,\n\t> content {\n\t\tdisplay: none;\n\t}\n}\n","@charset \"utf-8\";\n/* TOC – Color Variables\n\n- Basics\n- Corporate Identity Colorpalette\n- Foundation Color Variables\n- Grey Scale\n- Topbar-Navigation\n- Footer\n- Code\n\n*/\n\n\n\n/* Basics\n------------------------------------------------------------------- */\n\n$text-color         : #111;\n$body-font-color    : $text-color;\n$body-bg            : #fdfdfd;\n\n\n\n/* Corporate Identity Colorpalette\n   https://color.adobe.com/de/Flat-Design-Colors-v2-color-theme-4341903/\n------------------------------------------------------------------- */\n\n$ci-1               : #334D5C; // dark turquoise\n$ci-2               : #45B29D; // turquoise\n$ci-3               : #EFC94C; // yellow\n$ci-4               : #E27A3F; // orange\n$ci-5               : #DF4949; // red\n$ci-6               : #A1D044; // green\n\n\n\n/* Foundation Color Variables\n------------------------------------------------------------------- */\n\n$primary-color      : $ci-1;\n$secondary-color    : $ci-6;\n$alert-color        : $ci-5;\n$success-color      : $ci-6;\n$warning-color      : $ci-4;\n$info-color         : $ci-1;\n\n\n\n/* Grey Scale\n------------------------------------------------------------------- */\n\n$grey-1             : #E4E4E4;\n$grey-2             : #D7D7D7;\n$grey-3             : #CBCBCB;\n$grey-4             : #BEBEBE;\n$grey-5             : #A4A4A4;\n$grey-6             : #979797;\n$grey-7             : #8B8B8B;\n$grey-8             : #7E7E7E;\n$grey-9             : #646464;\n$grey-10            : #575757;\n$grey-11            : #4B4B4B;\n$grey-12            : #3E3E3E;\n$grey-13            : #313131;\n$grey-14            : #242424;\n$grey-15            : #171717;\n$grey-16            : #0B0B0B;\n\n\n\n/* Topbar-Navigation\n------------------------------------------------------------------- */\n\n$topbar-bg-color    : $body-bg;\n$topbar-bg          : $topbar-bg-color;\n\n\n$topbar-dropdown-toggle-color: $ci-1;\n\n$topbar-link-color  : #000;\n$topbar-link-color-hover: #000;\n$topbar-link-color-active: #000;\n$topbar-link-color-active-hover: #000;\n\n$topbar-dropdown-label-color: $ci-2;\n$topbar-dropdown-link-bg-hover: $ci-6;\n\n$topbar-link-bg-active: $ci-6; // Active Navigation Link\n$topbar-link-bg-hover: $ci-6;\n$topbar-link-bg-active-hover: $ci-2;\n\n\n$topbar-dropdown-bg: $ci-6; // Background Mobile Navigation\n$topbar-dropdown-link-color: #000;\n$topbar-dropdown-link-bg: $ci-2;\n\n$topbar-menu-link-color-toggled: $ci-1;\n$topbar-menu-icon-color-toggled: $ci-1;\n$topbar-menu-link-color: #000;\n$topbar-menu-icon-color: #000;\n$topbar-menu-link-color-toggled: $ci-6;\n$topbar-menu-icon-color-toggled: $ci-6;\n\n\n\n/* Footer\n------------------------------------------------------------------- */\n\n$footer-bg          : $grey-8;\n$footer-color       : #fff;\n$footer-link-color  : $ci-6;\n\n\n$subfooter-bg       : $grey-13;\n$subfooter-color    : $grey-8;\n$subfooter-link-color: $grey-8;\n\n\n\n/* Code\n------------------------------------------------------------------- */\n\n$code-background-color: scale-color($secondary-color, $lightness: 70%);\n\n$highlight-background: #ffffff;\n$highlight-comment: #999988;\n$highlight-error: #a61717;\n$highlight-comment-special: #999999;\n$highlight-deleted: #000000;\n$highlight-error-2: #aa0000;\n$highlight-literal-string: #d14;\n$highlight-literal-number: #009999;\n$highlight-name-attribut: #008080;\n$highlight-error-background: #e3d2d2;\n$highlight-generic-deleted: #ffdddd;\n$highlight-generic-deleted-specific: #ffaaaa;\n$highlight-generic-inserted: #ddffdd;\n$highlight-generic-inserted-specific: #aaffaa;\n$highlight-generic-output: #888888;\n$highlight-generic-prompt: #555555;\n$highlight-subheading: #aaaaaa;\n$highlight-keyword-type: #445588;\n$highlight-name-builtin: #0086B3;\n$highlight-name-class: #445588;\n$highlight-name-entity: #800080;\n$highlight-name-exception: #990000;\n$highlight-name-function: #990000;\n$highlight-name-namespace: #555555;\n$highlight-name-tag: #000080;\n$highlight-text-whitespace: #bbbbbb;\n$highlight-literal-string-regex: #009926;\n$highlight-literal-string-symbol: #990073;\n"],"file":"atom.css"}