{"version":3,"sources":["themes/_jarvis-theme.scss","themes/ocean.scss","themes/ocean.css"],"names":[],"mappings":";;;;;;;AAqBG;EACC,2CClBW;ACFf;;AFyBG;EACC,yBC1Be;ACInB;;AF2BG;EACC,yBChCe;ACQnB;;AF4BG;EAGE,cCnCU;ACQf;;AFwBG;EAQG,yBC5B8C;ACApD;;AFsCG;EAGE,yBCvDU;ACkBf;;AFkCG;EAMG,yBC1DS;ACsBf;;AF6CE;EAEE,oCAAiE;EAGjE,8BC1Ee;AC6BnB;;AFiDE;EAEE,cChFe;ACiCnB;;AFmDE;EAEE,yBCnFS;ACkCb;;AF+CG;EAOE,yBCvFU;ACqCf","file":"ocean.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$dark-teal: #627c83;\n$teal: #738e96;\n$green: #9ebaa0;\n$tan: #aa9d88;\n$white: #ffffff;\n\n@include jarvis-theme( (\n\thint-text: rgba( $dark-teal, .4 ),\n\tinput-text: $dark-teal,\n\tinput-background: darken( $white, 10% ),\n\tloading-dot: $white,\n\tloading: $tan,\n\tmenu-background: $dark-teal,\n\tmodal-background: $dark-teal,\n\toverlay-background: rgba( $green, .85 ),\n\tsuggestion-focus-background: $green,\n\tsuggestion-hover-background: lighten( $green, 10% ),\n\tsuggestion-text: $white,\n) );\n\n",".jarvis__overlay {\n  background-color: rgba(158, 186, 160, 0.85);\n}\n\n.jarvis__modal {\n  background-color: #627c83;\n}\n\n.jarvis__menu {\n  background-color: #627c83;\n}\n\n.jarvis__suggestion a {\n  color: #ffffff;\n}\n\n.jarvis__suggestion a:hover {\n  background-color: #bccfbd;\n}\n\n.jarvis__cursor a {\n  background-color: #9ebaa0;\n}\n\n.jarvis__cursor a:hover {\n  background-color: #9ebaa0;\n}\n\n.jarvis__hint[type=\"text\"] {\n  background-color: #e6e6e6 !important;\n  color: rgba(98, 124, 131, 0.4);\n}\n\n.jarvis__input[type=\"text\"] {\n  color: #627c83;\n}\n\n.jarvis__loading {\n  background-color: #aa9d88;\n}\n\n.jarvis__loading::after {\n  background-color: #ffffff;\n}\n"]}