{"version":3,"sources":["themes/_jarvis-theme.scss","themes/solarized-light.scss","themes/solarized-light.css"],"names":[],"mappings":";;;;;;;AAqBG;EACC,yCClBa;ACFjB;;AFyBG;EACC,yBCpBa;ACFjB;;AF2BG;EACC,yBC1Ba;ACEjB;;AF4BG;EAGE,cCrCY;ACUjB;;AFwBG;EAQG,yBCtCW;ED0CX,cCvCW;ACQjB;;AFqCG;EAGE,yBClDY;EDyDZ,cCvDY;ACajB;;AFgCG;EAMG,yBCrDW;ACmBjB;;AF2CE;EAEE,oCAAiE;EAGjE,cCtEa;AC2BjB;;AF+CE;EAEE,cC9Ea;ACiCjB;;AFiDE;EAEE,yBCrFa;ACsCjB;;AF6CG;EAOE,yBCpFY;ACoCjB","file":"solarized-light.css","sourcesContent":["@charset \"UTF-8\";\n\n@mixin jarvis-theme( $colors: () ) {\n\n\t$colors: map-merge( (\n\t\thint-background: rgb( 235, 235, 235 ),\n\t\thint-text: rgb( 150, 150, 150 ),\n\t\tinput-background: #ebebeb,\n\t\tinput-text: inherit,\n\t\tloading-dot: #ffffff,\n\t\tloading: #808080,\n\t\tmenu-background: rgb(255, 255, 255),\n\t\tmodal-background: rgb(255, 255, 255),\n\t\toverlay-background: rgba( 0, 0, 0, .7 ),\n\t\tsuggestion-focus: rgba( 255, 255, 255, .2 ),\n\t\tsuggestion-hover: rgba( 255, 255, 255, .08 ),\n\t\tsuggestion-text: inherit,\n\t), $colors );\n\n\t.jarvis {\n\t\t@if map-get( $colors, overlay-background ) {\n\t\t\t&__overlay {\n\t\t\t\tbackground-color: map-get( $colors, overlay-background );\n\t\t\t}\n\t\t}\n\n\t\t@if map-get( $colors, modal-background ) {\n\t\t\t&__modal {\n\t\t\t\tbackground-color: map-get( $colors, modal-background );\n\t\t\t}\n\t\t}\n\n\t\t@if map-get( $colors, menu-background ) {\n\t\t\t&__menu {\n\t\t\t\tbackground-color: map-get( $colors, menu-background );\n\t\t\t}\n\t\t}\n\n\t\t&__suggestion {\n\t\t\ta {\n\t\t\t\t@if map-get( $colors, suggestion-text ) {\n\t\t\t\t\tcolor: map-get( $colors, suggestion-text );\n\t\t\t\t}\n\n\t\t\t\t&:hover {\n\t\t\t\t\t@if map-get( $colors, suggestion-hover-background ) {\n\t\t\t\t\t\tbackground-color: map-get( $colors, suggestion-hover-background );\n\t\t\t\t\t}\n\n\t\t\t\t\t@if map-get( $colors, suggestion-hover-text ) {\n\t\t\t\t\t\tcolor: map-get( $colors, suggestion-hover-text);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&__cursor {\n\t\t\ta {\n\t\t\t\t@if map-get( $colors, suggestion-focus-background ) {\n\t\t\t\t\tbackground-color: map-get( $colors, suggestion-focus-background );\n\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\tbackground-color: map-get( $colors, suggestion-focus-background );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t@if map-get( $colors, suggestion-focus-text ) {\n\t\t\t\t\tcolor: map-get( $colors, suggestion-focus-text );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&__hint[type=\"text\"] {\n\t\t\t@if map-get( $colors, input-background ) {\n\t\t\t\tbackground-color: map-get( $colors, input-background ) !important; // overriding typeahead's inline style\n\t\t\t}\n\t\t\t@if map-get( $colors, hint-text ) {\n\t\t\t\tcolor: map-get( $colors, hint-text );\n\t\t\t}\n\t\t}\n\n\t\t&__input[type=\"text\"] {\n\t\t\t@if map-get( $colors, input-text ) {\n\t\t\t\tcolor: map-get( $colors, input-text );\n\t\t\t}\n\t\t}\n\n\t\t&__loading {\n\t\t\t@if map-get( $colors, loading ) {\n\t\t\t\tbackground-color: map-get( $colors, loading );\n\t\t\t}\n\n\t\t\t@if map-get( $colors, loading-dot ) {\n\t\t\t\t&::after {\n\t\t\t\t\tbackground-color: map-get( $colors, loading-dot );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","@import 'jarvis-theme';\n\n$base03 : #002b36;\n$base02 : #073642;\n$base01 : #586e75;\n$base00 : #657b83;\n$base0  : #839496;\n$base1  : #93a1a1;\n$base2  : #eee8d5;\n$base3  : #fdf6e3;\n$yellow : #b58900;\n$orange : #cb4b16;\n$red    : #dc322f;\n$magenta: #d33682;\n$violet : #6c71c4;\n$blue   : #268bd2;\n$cyan   : #2aa198;\n$green  : #859900;\n\n@include jarvis-theme( (\n\thint-text: $base0,\n\tinput-text: $base01,\n\tinput-background: $base3,\n\tloading-dot: $base3,\n\tloading: $base02,\n\tmenu-background: $base2,\n\tmodal-background: $base2,\n\toverlay-background: rgba( $base01, .8 ),\n\tsuggestion-focus-background: $base3,\n\tsuggestion-focus-text: $orange,\n\tsuggestion-hover-background: $base2,\n\tsuggestion-hover-text: $orange,\n\tsuggestion-text: $base01,\n) );\n",".jarvis__overlay {\n  background-color: rgba(88, 110, 117, 0.8);\n}\n\n.jarvis__modal {\n  background-color: #eee8d5;\n}\n\n.jarvis__menu {\n  background-color: #eee8d5;\n}\n\n.jarvis__suggestion a {\n  color: #586e75;\n}\n\n.jarvis__suggestion a:hover {\n  background-color: #eee8d5;\n  color: #cb4b16;\n}\n\n.jarvis__cursor a {\n  background-color: #fdf6e3;\n  color: #cb4b16;\n}\n\n.jarvis__cursor a:hover {\n  background-color: #fdf6e3;\n}\n\n.jarvis__hint[type=\"text\"] {\n  background-color: #fdf6e3 !important;\n  color: #839496;\n}\n\n.jarvis__input[type=\"text\"] {\n  color: #586e75;\n}\n\n.jarvis__loading {\n  background-color: #073642;\n}\n\n.jarvis__loading::after {\n  background-color: #fdf6e3;\n}\n"]}