{"version":3,"sources":["themes/_jarvis-theme.scss","themes/solarized-dark.scss","themes/solarized-dark.css"],"names":[],"mappings":";;;;;;;AAqBG;EACC,uCCpBa;ACAjB;;AFyBG;EACC,yBCzBa;ACGjB;;AF2BG;EACC,yBC/Ba;ACOjB;;AF4BG;EAGE,cChCY;ACKjB;;AFwBG;EAQG,yBChB8C;EDoB9C,cClCW;ACGjB;;AFqCG;EAGE,yBCzDY;EDgEZ,cCtDY;ACYjB;;AFgCG;EAMG,yBC5DW;AC0BjB;;AF2CE;EAEE,oCAAiE;EAGjE,cCvEa;AC4BjB;;AF+CE;EAEE,cCzEa;AC4BjB;;AFiDE;EAEE,yBC5Ea;AC6BjB;;AF6CG;EAOE,yBCpFY;ACoCjB","file":"solarized-dark.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: $base00,\n\tinput-text: $base3,\n\tinput-background: $base03,\n\tloading-dot: $base3,\n\tloading: $red,\n\tmenu-background: $base02,\n\tmodal-background: $base02,\n\toverlay-background: rgba( $base03, .85 ),\n\tsuggestion-focus-background: $base03,\n\tsuggestion-focus-text: $red,\n\tsuggestion-hover-background: lighten( $base03, 5% ),\n\tsuggestion-hover-text: $cyan,\n\tsuggestion-text: $base3,\n) );\n\n",".jarvis__overlay {\n  background-color: rgba(0, 43, 54, 0.85);\n}\n\n.jarvis__modal {\n  background-color: #073642;\n}\n\n.jarvis__menu {\n  background-color: #073642;\n}\n\n.jarvis__suggestion a {\n  color: #fdf6e3;\n}\n\n.jarvis__suggestion a:hover {\n  background-color: #003f50;\n  color: #2aa198;\n}\n\n.jarvis__cursor a {\n  background-color: #002b36;\n  color: #dc322f;\n}\n\n.jarvis__cursor a:hover {\n  background-color: #002b36;\n}\n\n.jarvis__hint[type=\"text\"] {\n  background-color: #002b36 !important;\n  color: #657b83;\n}\n\n.jarvis__input[type=\"text\"] {\n  color: #fdf6e3;\n}\n\n.jarvis__loading {\n  background-color: #dc322f;\n}\n\n.jarvis__loading::after {\n  background-color: #fdf6e3;\n}\n"]}