@dataloop-ai/components 0.18.0 → 0.18.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (277) hide show
  1. package/package.json +6 -3
  2. package/src/App.vue +5 -227
  3. package/src/assets/constants.scss +2 -1
  4. package/src/assets/globals.scss +21 -0
  5. package/src/components/basic/DlAccordion/DlAccordion.vue +26 -4
  6. package/src/components/basic/DlAccordion/components/AccordionHeader.vue +2 -1
  7. package/src/components/basic/DlAvatar/DlAvatar.vue +1 -1
  8. package/src/components/basic/DlButton/DlButton.vue +115 -25
  9. package/src/components/basic/DlButton/utils.ts +45 -2
  10. package/src/components/basic/DlChip/DlChip.vue +3 -7
  11. package/src/components/basic/DlChip/utils.ts +4 -4
  12. package/src/components/basic/DlContainer/DlContainer.vue +70 -0
  13. package/src/components/basic/DlContainer/index.ts +3 -0
  14. package/src/components/basic/DlEmptyState/DlEmptyState.vue +282 -0
  15. package/src/components/basic/DlEmptyState/index.ts +2 -0
  16. package/src/components/basic/DlEmptyState/types.ts +20 -0
  17. package/src/components/basic/DlGrid/DlGrid.vue +163 -0
  18. package/src/components/basic/DlGrid/index.ts +4 -0
  19. package/src/components/basic/DlGrid/types.ts +5 -0
  20. package/src/components/basic/DlKpi/components/KpiInfo.vue +2 -1
  21. package/src/components/basic/DlListItem/DlListItem.vue +96 -66
  22. package/src/components/basic/DlListItem/utils.ts +0 -3
  23. package/src/components/basic/DlPanelContainer/DlPanelContainer.vue +37 -13
  24. package/src/components/basic/DlPopup/DlPopup.vue +58 -11
  25. package/src/components/basic/DlPopup/components/PopupHeader.vue +11 -6
  26. package/src/components/basic/DlProgressChart/DlProgressChart.vue +2 -1
  27. package/src/components/basic/DlWidget/DlWidget.vue +273 -141
  28. package/src/components/basic/DlWidget/index.ts +1 -3
  29. package/src/components/basic/DlWidget/utils.ts +90 -8
  30. package/src/components/basic/index.ts +4 -2
  31. package/src/components/basic/types.ts +2 -0
  32. package/src/components/compound/DlCard/DlCard.vue +796 -0
  33. package/src/components/compound/DlCard/components/DescriptionModal.vue +137 -0
  34. package/src/components/compound/DlCard/types.ts +38 -0
  35. package/src/components/compound/DlCharts/charts/DlBarChart/DlBarChart.vue +39 -4
  36. package/src/components/compound/DlCharts/charts/DlColumnChart/DlColumnChart.vue +128 -36
  37. package/src/components/compound/DlCharts/charts/DlConfusionMatrix/DlConfusionMatrix.vue +167 -87
  38. package/src/components/compound/DlCharts/charts/DlConfusionMatrix/utils.ts +2 -1
  39. package/src/components/compound/DlCharts/charts/DlDoughnutChart/DlDoughnutChart.vue +44 -3
  40. package/src/components/compound/DlCharts/charts/DlDoughnutChart/DlDoughnutChartWidget.vue +1 -2
  41. package/src/components/compound/DlCharts/charts/DlDoughnutChart/components/DlDoughnutChartLegend.vue +9 -18
  42. package/src/components/compound/DlCharts/charts/DlLineChart/DlLineChart.vue +48 -9
  43. package/src/components/compound/DlCharts/charts/DlScatterChart/DlScatterChart.vue +667 -0
  44. package/src/components/compound/DlCharts/charts/DlScatterChart/index.ts +2 -0
  45. package/src/components/compound/DlCharts/charts/index.ts +1 -0
  46. package/src/components/compound/DlCharts/components/DlBrush.vue +3 -2
  47. package/src/components/compound/DlCharts/components/DlChartLabels.vue +2 -1
  48. package/src/components/compound/DlCharts/components/DlChartScrollBar.vue +1 -0
  49. package/src/components/compound/DlCharts/types/props.ts +5 -1
  50. package/src/components/compound/DlCharts/utils.ts +1 -1
  51. package/src/components/compound/DlCodeEditor/DlCodeEditor.vue +173 -0
  52. package/src/components/compound/DlCodeEditor/README.md +11 -0
  53. package/src/components/compound/DlCodeEditor/components/CodeEditor.vue +705 -0
  54. package/src/components/compound/DlCodeEditor/index.ts +3 -0
  55. package/src/components/compound/DlCodeEditor/styles/themes-base16.css +12809 -0
  56. package/src/components/compound/DlCodeEditor/styles/themes.css +3999 -0
  57. package/src/components/compound/DlCodeEditor/types.ts +21 -0
  58. package/src/components/compound/DlDateTime/DlDatePicker/DlDatePicker.vue +9 -1
  59. package/src/components/compound/DlDateTime/DlDatePicker/components/DlCalendar.vue +4 -2
  60. package/src/components/compound/DlDateTime/DlDatePicker/components/DlMonthCalendar.vue +2 -1
  61. package/src/components/compound/DlDateTime/DlDateTimeRange/{DlCardSidebar.vue → CardSidebar.vue} +10 -11
  62. package/src/components/compound/DlDateTime/DlDateTimeRange/DlDateTimeRange.vue +18 -9
  63. package/src/components/compound/DlDateTime/DlTimePicker/DlTimePicker.vue +2 -2
  64. package/src/components/compound/DlDialogBox/DlDialogBox.vue +74 -15
  65. package/src/components/compound/DlDialogBox/components/DlDialogBoxFooter.vue +1 -1
  66. package/src/components/compound/DlDialogBox/components/DlDialogBoxHeader.vue +9 -7
  67. package/src/components/compound/DlDropdownButton/DlDropdownButton.vue +13 -4
  68. package/src/components/compound/DlInput/DlInput.vue +80 -17
  69. package/src/components/compound/DlJsonEditor/DlJsonEditor.vue +42 -219
  70. package/src/components/compound/DlOptionGroup/DlOptionGroup.vue +16 -17
  71. package/src/components/compound/DlOptionGroup/components/MenuItemWrapper.vue +2 -2
  72. package/src/components/compound/DlPagination/DlPagination.vue +1 -1
  73. package/src/components/compound/DlPagination/components/PaginationLegend.vue +0 -2
  74. package/src/components/compound/DlPagination/components/RowsSelector.vue +0 -2
  75. package/src/components/compound/DlRange/DlRange.vue +3 -2
  76. package/src/components/compound/DlSearches/DlSearch/DlSearch.vue +12 -5
  77. package/src/components/compound/DlSearches/DlSmartSearch/DlSmartSearch.vue +413 -97
  78. package/src/components/compound/DlSearches/DlSmartSearch/components/DlSmartSearchFilters.vue +4 -1
  79. package/src/components/compound/DlSearches/DlSmartSearch/components/DlSmartSearchInput.vue +100 -39
  80. package/src/components/compound/DlSearches/DlSmartSearch/components/DlSuggestionsDropdown.vue +12 -7
  81. package/src/components/compound/DlSearches/DlSmartSearch/components/FiltersQuery.vue +5 -6
  82. package/src/components/compound/DlSearches/DlSmartSearch/types.ts +14 -0
  83. package/src/components/compound/DlSearches/DlSmartSearch/utils/highlightSyntax.ts +10 -6
  84. package/src/components/compound/DlSearches/DlSmartSearch/utils/index.ts +172 -48
  85. package/src/components/compound/DlSelect/DlSelect.vue +264 -130
  86. package/src/components/compound/DlSelect/utils.ts +4 -1
  87. package/src/components/compound/DlSlider/DlSlider.vue +10 -2
  88. package/src/components/compound/DlSlider/components/DlSliderBase.vue +3 -3
  89. package/src/components/compound/DlSlider/components/DlSliderInput.vue +17 -26
  90. package/src/components/compound/DlSlider/sliderStyles.scss +5 -1
  91. package/src/components/compound/DlSlider/useSlider.ts +2 -2
  92. package/src/components/compound/DlSlider/utils.ts +2 -2
  93. package/src/components/compound/DlStepper/DlStepper.vue +46 -4
  94. package/src/components/compound/DlStepper/components/DlStepperContent.vue +6 -2
  95. package/src/components/compound/DlStepper/components/DlStepperFooter.vue +12 -0
  96. package/src/components/compound/DlStepper/components/DlStepperSidebar.vue +24 -11
  97. package/src/components/compound/DlStepper/models/Step.ts +37 -8
  98. package/src/components/compound/DlStepper/models/Stepper.ts +108 -15
  99. package/src/components/compound/DlStepper/models/interfaces.ts +2 -1
  100. package/src/components/compound/DlTable/DlTable.vue +49 -14
  101. package/src/components/compound/DlTable/components/DlTd.vue +9 -9
  102. package/src/components/compound/DlTable/components/DlTh.vue +3 -2
  103. package/src/components/compound/DlTable/hooks/tableColumnSelection.ts +35 -40
  104. package/src/components/compound/DlTable/hooks/tableFilter.ts +33 -21
  105. package/src/components/compound/DlTable/hooks/tablePagination.ts +18 -18
  106. package/src/components/compound/DlTable/hooks/tableRowExpand.ts +2 -1
  107. package/src/components/compound/DlTable/hooks/tableRowSelection.ts +0 -1
  108. package/src/components/compound/DlTable/hooks/tableSort.ts +52 -47
  109. package/src/components/compound/DlTable/styles/dl-table-styles.scss +8 -0
  110. package/src/components/compound/DlTabs/DlTabs.vue +83 -31
  111. package/src/components/compound/DlTabs/components/DlTab.vue +14 -4
  112. package/src/components/compound/DlTabs/components/TabsWrapper.vue +32 -27
  113. package/src/components/compound/DlThumbnailGallery/DlThumbnailGallery.vue +268 -0
  114. package/src/components/compound/DlThumbnailGallery/index.ts +2 -0
  115. package/src/components/compound/DlThumbnailGallery/types.ts +11 -0
  116. package/src/components/compound/DlToast/api/useToast.ts +42 -1
  117. package/src/components/compound/DlToast/components/ToastComponent.vue +24 -32
  118. package/src/components/compound/DlToast/types.ts +52 -0
  119. package/src/components/compound/DlTreeTable/DlTreeTable.vue +1293 -0
  120. package/src/components/compound/DlTreeTable/components/DlTdTree.vue +119 -0
  121. package/src/components/compound/DlTreeTable/components/DlTrTree.vue +52 -0
  122. package/src/components/compound/DlTreeTable/index.ts +3 -0
  123. package/src/components/compound/DlTreeTable/types.ts +1 -0
  124. package/src/components/compound/DlTreeTable/utils/convertToNestedObject.ts +51 -0
  125. package/src/components/compound/DlTreeTable/utils/flatTreeData.ts +19 -0
  126. package/src/components/compound/DlTreeTable/utils/getFromChildren.ts +39 -0
  127. package/src/components/compound/DlTreeTable/utils/trSpacing.ts +13 -0
  128. package/src/components/compound/DlTreeTable/utils/treeTableRowSelection.ts +184 -0
  129. package/src/components/compound/index.ts +14 -1
  130. package/src/components/compound/types.ts +2 -0
  131. package/src/components/essential/DlBadge/DlBadge.vue +3 -3
  132. package/src/components/essential/DlCheckbox/DlCheckbox.vue +10 -7
  133. package/src/components/essential/DlEllipsis/DlEllipsis.vue +141 -0
  134. package/src/components/essential/DlIcon/DlIcon.vue +5 -5
  135. package/src/components/essential/DlLabel/DlLabel.vue +190 -0
  136. package/src/components/essential/DlLabel/index.ts +2 -0
  137. package/src/components/essential/DlList/DlList.vue +3 -3
  138. package/src/components/essential/DlMenu/DlMenu.vue +41 -22
  139. package/src/components/essential/DlMenu/utils.ts +8 -7
  140. package/src/components/essential/DlPageLayout/DlPageLayout.vue +90 -0
  141. package/src/components/essential/DlPageLayout/index.ts +2 -0
  142. package/src/components/essential/DlProgressBar/DlProgressBar.vue +1 -1
  143. package/src/components/essential/DlRadio/DlRadio.vue +10 -5
  144. package/src/components/essential/DlSeparator/DlSeparator.vue +2 -2
  145. package/src/components/essential/DlSpinner/index.ts +1 -13
  146. package/src/components/essential/DlSpinner/styles/spinnerStyles.scss +7 -0
  147. package/src/components/essential/DlSwitch/DlSwitch.vue +6 -3
  148. package/src/components/essential/DlTextArea/DlTextArea.vue +212 -7
  149. package/src/components/essential/DlThemeProvider/DlThemeProvider.vue +6 -0
  150. package/src/components/essential/DlTypography/DlTypography.vue +7 -1
  151. package/src/components/essential/index.ts +3 -2
  152. package/src/components/shared/DlInfoErrorMessage/DlInfoErrorMessage.vue +1 -1
  153. package/src/components/{essential → shared}/DlTooltip/DlTooltip.vue +26 -19
  154. package/src/components/shared/DlVirtualScroll/DlVirtualScroll.vue +106 -43
  155. package/src/components/shared/DlVirtualScroll/useVirtualScroll.ts +28 -4
  156. package/src/components/shared/index.ts +1 -0
  157. package/src/components/types.ts +2 -0
  158. package/src/demos/BarChartDemo.vue +59 -2
  159. package/src/demos/ColumnChartDemo.vue +67 -2
  160. package/src/demos/DlAccordionDemo.vue +92 -43
  161. package/src/demos/DlAlertDemo.vue +14 -0
  162. package/src/demos/DlButtonDemo.vue +41 -4
  163. package/src/demos/DlCardDemo.vue +156 -19
  164. package/src/demos/DlChartDoughnutDemo.vue +49 -2
  165. package/src/demos/DlCheckboxDemo.vue +28 -3
  166. package/src/demos/DlCodeEditor/DlCodeEditorDemo.vue +247 -0
  167. package/src/demos/DlCodeEditor/index.ts +2 -0
  168. package/src/demos/DlConfusionMatrixDemo.vue +93 -37
  169. package/src/demos/DlDemoPage.vue +235 -0
  170. package/src/demos/DlDialogBoxDemo.vue +56 -51
  171. package/src/demos/DlDropdownButtonDemo.vue +35 -27
  172. package/src/demos/DlEmptyStateDemo.vue +81 -0
  173. package/src/demos/DlGridDemo.vue +40 -0
  174. package/src/demos/DlInputDemo.vue +21 -1
  175. package/src/demos/DlJsonEditorDemo.vue +59 -0
  176. package/src/demos/DlLabelDemo.vue +208 -0
  177. package/src/demos/DlLineChartDemo.vue +50 -2
  178. package/src/demos/DlListDemo.vue +12 -9
  179. package/src/demos/DlMenuDemo.vue +147 -20
  180. package/src/demos/DlPageLayoutDemo.vue +146 -0
  181. package/src/demos/DlPanelContainerDemo.vue +113 -2
  182. package/src/demos/DlPopupDemo.vue +82 -1
  183. package/src/demos/DlRadioDemo.vue +16 -1
  184. package/src/demos/DlScatterChartDemo.vue +161 -0
  185. package/src/demos/DlSearchDemo.vue +9 -0
  186. package/src/demos/DlSelectDemo.vue +124 -27
  187. package/src/demos/DlSpinnerDemo.vue +0 -2
  188. package/src/demos/DlStepperDemo/DlStepperDemo.vue +5 -1
  189. package/src/demos/DlStepperDemo/EmptyStateStepper.vue +149 -0
  190. package/src/demos/DlStepperDemo/SimpleStepper.vue +4 -0
  191. package/src/demos/DlStepperDemo/steps/GeneralStep.vue +1 -0
  192. package/src/demos/DlSwitchDemo.vue +12 -0
  193. package/src/demos/DlTableDemo.vue +84 -5
  194. package/src/demos/DlTabsDemo.vue +92 -3
  195. package/src/demos/DlTextAreaDemo.vue +14 -17
  196. package/src/demos/DlThumbnailGalleryDemo.vue +99 -0
  197. package/src/demos/DlToastDemo.vue +3 -9
  198. package/src/demos/DlTooltipDemo.vue +66 -2
  199. package/src/demos/DlTreeTableDemo.vue +694 -0
  200. package/src/demos/DlVirtualScrollDemo.vue +3 -12
  201. package/src/demos/DlWidgetDemo.vue +252 -61
  202. package/src/demos/SmartSearchDemo/DlSmartSearchDemo.vue +151 -32
  203. package/src/demos/index.ts +23 -4
  204. package/src/hooks/use-anchor.ts +15 -17
  205. package/src/hooks/use-arrow-navigation.ts +64 -21
  206. package/src/hooks/use-model-toggle.ts +14 -16
  207. package/src/hooks/use-portal.ts +9 -3
  208. package/src/hooks/use-scroll-target.ts +2 -4
  209. package/src/hooks/use-size-observer.ts +3 -2
  210. package/src/hooks/use-suggestions.ts +239 -49
  211. package/src/hooks/use-transition.ts +10 -4
  212. package/src/index.ts +22 -1
  213. package/src/layouts/DlDatasetBrowser/DemoComponents/DatasetFooter.vue +78 -0
  214. package/src/layouts/DlDatasetBrowser/DemoComponents/DatasetHeader.vue +22 -0
  215. package/src/layouts/DlDatasetBrowser/DemoComponents/DatasetLeftDrawer.vue +96 -0
  216. package/src/layouts/DlDatasetBrowser/DemoComponents/DatasetMainContent.vue +51 -0
  217. package/src/layouts/DlDatasetBrowser/DemoComponents/DatasetRightDrawer.vue +88 -0
  218. package/src/layouts/DlDatasetBrowser/DemoComponents/MainContent/ActionsMenu.vue +70 -0
  219. package/src/layouts/DlDatasetBrowser/DemoComponents/MainContent/AutomationMenu.vue +106 -0
  220. package/src/layouts/DlDatasetBrowser/DemoComponents/MainContent/CardView.vue +101 -0
  221. package/src/layouts/DlDatasetBrowser/DemoComponents/MainContent/CardViewGallery.vue +141 -0
  222. package/src/layouts/DlDatasetBrowser/DemoComponents/MainContent/CardViewTable.vue +193 -0
  223. package/src/layouts/DlDatasetBrowser/DemoComponents/MainContent/EmptyState/LayoutEmptyState.vue +227 -0
  224. package/src/layouts/DlDatasetBrowser/DemoComponents/MainContent/EmptyState/UploadData.vue +106 -0
  225. package/src/layouts/DlDatasetBrowser/DemoComponents/MainContent/MainContentImages.vue +540 -0
  226. package/src/layouts/DlDatasetBrowser/DemoComponents/MainContent/MainContentNav.vue +329 -0
  227. package/src/layouts/DlDatasetBrowser/DemoComponents/NavbarKpi.vue +84 -0
  228. package/src/layouts/DlDatasetBrowser/DemoComponents/NavbarSearch.vue +132 -0
  229. package/src/layouts/DlDatasetBrowser/DemoComponents/SearchFilterMenu.vue +19 -0
  230. package/src/layouts/DlDatasetBrowser/DemoComponents/filters/AddFilter.vue +212 -0
  231. package/src/layouts/DlDatasetBrowser/DemoComponents/types/imageMetadata.ts +28 -0
  232. package/src/layouts/DlDatasetBrowser/DlDatasetBrowser.vue +42 -0
  233. package/src/layouts/DlStudioLayout/DlStudioLayout.vue +42 -0
  234. package/src/layouts/DlStudioLayout/components/Demo/LeftMenuContent.vue +23 -0
  235. package/src/layouts/DlStudioLayout/components/Demo/StudioFooter.vue +25 -0
  236. package/src/layouts/DlStudioLayout/components/Demo/StudioHeader.vue +121 -0
  237. package/src/layouts/DlStudioLayout/components/Demo/StudioLeftDrawer.vue +245 -0
  238. package/src/layouts/DlStudioLayout/components/Demo/StudioMainContent.vue +31 -0
  239. package/src/layouts/DlStudioLayout/components/Demo/StudioTabsMenu.vue +117 -0
  240. package/src/layouts/DlStudioLayout/components/Demo/TabMenu/FilterMenu.vue +62 -0
  241. package/src/layouts/DlStudioLayout/components/Demo/TabMenu/TabMenuAnnotations.vue +98 -0
  242. package/src/layouts/DlStudioLayout/components/Demo/TabMenu/TabMenuItem.vue +66 -0
  243. package/src/layouts/DlStudioLayout/components/LayoutNavbar.vue +24 -0
  244. package/src/layouts/DlStudioLayout/components/ListAutocomplete.vue +149 -0
  245. package/src/layouts/DlStudioLayout/components/NavigationDrawer.vue +147 -0
  246. package/src/layouts/DlStudioLayout/index.ts +2 -0
  247. package/src/layouts/DlStudioLayout/types/HorizontalItems.ts +9 -0
  248. package/src/layouts/DlStudioLayout/types/VerticalItems.ts +10 -0
  249. package/src/simple-code-editor.d.ts +1 -0
  250. package/src/utils/click-outside.ts +1 -1
  251. package/src/utils/dom.ts +5 -5
  252. package/src/utils/events.ts +3 -3
  253. package/src/utils/global-nodes.ts +2 -2
  254. package/src/utils/input-sizes.ts +5 -2
  255. package/src/utils/is-ellipsis-active.ts +4 -1
  256. package/src/utils/parse-smart-query.ts +209 -111
  257. package/src/utils/portal.ts +5 -5
  258. package/src/utils/position-engine.ts +7 -7
  259. package/src/utils/render.ts +1 -1
  260. package/src/utils/scroll.ts +2 -2
  261. package/src/utils/selection.ts +3 -3
  262. package/vite.config.ts +9 -1
  263. package/src/components/basic/DlCard/DlCard.vue +0 -241
  264. package/src/components/basic/DlCard/types.ts +0 -20
  265. package/src/components/basic/DlEllipsis/DlEllipsis.vue +0 -114
  266. package/src/components/basic/DlWidget/DlGrid.vue +0 -33
  267. package/src/components/basic/DlWidget/DlGridRow.vue +0 -32
  268. package/src/components/compound/DlSearches/DlSmartSearch/utils/utils.ts +0 -124
  269. package/src/components/compound/DlToast/utils/config.ts +0 -17
  270. package/src/components/essential/DlTextHolder/DlTextHolder.vue +0 -65
  271. package/src/components/essential/DlTextHolder/index.ts +0 -2
  272. package/src/demos/DlTextHolderDemo.vue +0 -42
  273. package/src/utils/swapNodes.ts +0 -30
  274. /package/src/components/{basic → compound}/DlCard/index.ts +0 -0
  275. /package/src/components/compound/DlDateTime/DlDateTimeRange/{DlDateInput.vue → DateInput.vue} +0 -0
  276. /package/src/components/{basic → essential}/DlEllipsis/index.ts +0 -0
  277. /package/src/components/{essential → shared}/DlTooltip/index.ts +0 -0
@@ -0,0 +1,3999 @@
1
+ @charset "UTF-8";
2
+ [theme=a11y-dark] {
3
+ /*!
4
+ Theme: a11y-dark
5
+ Author: @ericwbailey
6
+ Maintainer: @ericwbailey
7
+
8
+ Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css
9
+ */
10
+ }
11
+ [theme=a11y-dark] pre code.hljs {
12
+ display: block;
13
+ overflow-x: auto;
14
+ padding: 1em;
15
+ }
16
+ [theme=a11y-dark] code.hljs {
17
+ padding: 3px 5px;
18
+ }
19
+ [theme=a11y-dark] .hljs {
20
+ background: #2b2b2b;
21
+ color: #f8f8f2;
22
+ }
23
+ [theme=a11y-dark] .hljs-comment, [theme=a11y-dark] .hljs-quote {
24
+ color: #d4d0ab;
25
+ }
26
+ [theme=a11y-dark] .hljs-deletion, [theme=a11y-dark] .hljs-name, [theme=a11y-dark] .hljs-regexp, [theme=a11y-dark] .hljs-selector-class, [theme=a11y-dark] .hljs-selector-id, [theme=a11y-dark] .hljs-tag, [theme=a11y-dark] .hljs-template-variable, [theme=a11y-dark] .hljs-variable {
27
+ color: #ffa07a;
28
+ }
29
+ [theme=a11y-dark] .hljs-built_in, [theme=a11y-dark] .hljs-link, [theme=a11y-dark] .hljs-literal, [theme=a11y-dark] .hljs-meta, [theme=a11y-dark] .hljs-number, [theme=a11y-dark] .hljs-params, [theme=a11y-dark] .hljs-type {
30
+ color: #f5ab35;
31
+ }
32
+ [theme=a11y-dark] .hljs-attribute {
33
+ color: gold;
34
+ }
35
+ [theme=a11y-dark] .hljs-addition, [theme=a11y-dark] .hljs-bullet, [theme=a11y-dark] .hljs-string, [theme=a11y-dark] .hljs-symbol {
36
+ color: #abe338;
37
+ }
38
+ [theme=a11y-dark] .hljs-section, [theme=a11y-dark] .hljs-title {
39
+ color: #00e0e0;
40
+ }
41
+ [theme=a11y-dark] .hljs-keyword, [theme=a11y-dark] .hljs-selector-tag {
42
+ color: #dcc6e0;
43
+ }
44
+ [theme=a11y-dark] .hljs-emphasis {
45
+ font-style: italic;
46
+ }
47
+ [theme=a11y-dark] .hljs-strong {
48
+ font-weight: 700;
49
+ }
50
+ @media screen and (-ms-high-contrast: active) {
51
+ [theme=a11y-dark] .hljs-addition, [theme=a11y-dark] .hljs-attribute, [theme=a11y-dark] .hljs-built_in, [theme=a11y-dark] .hljs-bullet, [theme=a11y-dark] .hljs-comment, [theme=a11y-dark] .hljs-link, [theme=a11y-dark] .hljs-literal, [theme=a11y-dark] .hljs-meta, [theme=a11y-dark] .hljs-number, [theme=a11y-dark] .hljs-params, [theme=a11y-dark] .hljs-quote, [theme=a11y-dark] .hljs-string, [theme=a11y-dark] .hljs-symbol, [theme=a11y-dark] .hljs-type {
52
+ color: highlight;
53
+ }
54
+ [theme=a11y-dark] .hljs-keyword, [theme=a11y-dark] .hljs-selector-tag {
55
+ font-weight: 700;
56
+ }
57
+ }
58
+
59
+ [theme=a11y-light] {
60
+ /*!
61
+ Theme: a11y-light
62
+ Author: @ericwbailey
63
+ Maintainer: @ericwbailey
64
+
65
+ Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css
66
+ */
67
+ }
68
+ [theme=a11y-light] pre code.hljs {
69
+ display: block;
70
+ overflow-x: auto;
71
+ padding: 1em;
72
+ }
73
+ [theme=a11y-light] code.hljs {
74
+ padding: 3px 5px;
75
+ }
76
+ [theme=a11y-light] .hljs {
77
+ background: #fefefe;
78
+ color: #545454;
79
+ }
80
+ [theme=a11y-light] .hljs-comment, [theme=a11y-light] .hljs-quote {
81
+ color: #696969;
82
+ }
83
+ [theme=a11y-light] .hljs-deletion, [theme=a11y-light] .hljs-name, [theme=a11y-light] .hljs-regexp, [theme=a11y-light] .hljs-selector-class, [theme=a11y-light] .hljs-selector-id, [theme=a11y-light] .hljs-tag, [theme=a11y-light] .hljs-template-variable, [theme=a11y-light] .hljs-variable {
84
+ color: #d91e18;
85
+ }
86
+ [theme=a11y-light] .hljs-attribute, [theme=a11y-light] .hljs-built_in, [theme=a11y-light] .hljs-link, [theme=a11y-light] .hljs-literal, [theme=a11y-light] .hljs-meta, [theme=a11y-light] .hljs-number, [theme=a11y-light] .hljs-params, [theme=a11y-light] .hljs-type {
87
+ color: #aa5d00;
88
+ }
89
+ [theme=a11y-light] .hljs-addition, [theme=a11y-light] .hljs-bullet, [theme=a11y-light] .hljs-string, [theme=a11y-light] .hljs-symbol {
90
+ color: green;
91
+ }
92
+ [theme=a11y-light] .hljs-section, [theme=a11y-light] .hljs-title {
93
+ color: #007faa;
94
+ }
95
+ [theme=a11y-light] .hljs-keyword, [theme=a11y-light] .hljs-selector-tag {
96
+ color: #7928a1;
97
+ }
98
+ [theme=a11y-light] .hljs-emphasis {
99
+ font-style: italic;
100
+ }
101
+ [theme=a11y-light] .hljs-strong {
102
+ font-weight: 700;
103
+ }
104
+ @media screen and (-ms-high-contrast: active) {
105
+ [theme=a11y-light] .hljs-addition, [theme=a11y-light] .hljs-attribute, [theme=a11y-light] .hljs-built_in, [theme=a11y-light] .hljs-bullet, [theme=a11y-light] .hljs-comment, [theme=a11y-light] .hljs-link, [theme=a11y-light] .hljs-literal, [theme=a11y-light] .hljs-meta, [theme=a11y-light] .hljs-number, [theme=a11y-light] .hljs-params, [theme=a11y-light] .hljs-quote, [theme=a11y-light] .hljs-string, [theme=a11y-light] .hljs-symbol, [theme=a11y-light] .hljs-type {
106
+ color: highlight;
107
+ }
108
+ [theme=a11y-light] .hljs-keyword, [theme=a11y-light] .hljs-selector-tag {
109
+ font-weight: 700;
110
+ }
111
+ }
112
+
113
+ [theme=agate] {
114
+ /*!
115
+ Theme: Agate
116
+ Author: (c) Taufik Nurrohman <hi@taufik-nurrohman.com>
117
+ Maintainer: @taufik-nurrohman
118
+ Updated: 2021-04-24
119
+
120
+ #333
121
+ #62c8f3
122
+ #7bd694
123
+ #888
124
+ #a2fca2
125
+ #ade5fc
126
+ #b8d8a2
127
+ #c6b4f0
128
+ #d36363
129
+ #fc9b9b
130
+ #fcc28c
131
+ #ffa
132
+ #fff
133
+ */
134
+ }
135
+ [theme=agate] pre code.hljs {
136
+ display: block;
137
+ overflow-x: auto;
138
+ padding: 1em;
139
+ }
140
+ [theme=agate] code.hljs {
141
+ padding: 3px 5px;
142
+ }
143
+ [theme=agate] .hljs {
144
+ background: #333;
145
+ color: #fff;
146
+ }
147
+ [theme=agate] .hljs-doctag, [theme=agate] .hljs-meta-keyword, [theme=agate] .hljs-name, [theme=agate] .hljs-strong {
148
+ font-weight: 700;
149
+ }
150
+ [theme=agate] .hljs-code, [theme=agate] .hljs-emphasis {
151
+ font-style: italic;
152
+ }
153
+ [theme=agate] .hljs-section, [theme=agate] .hljs-tag {
154
+ color: #62c8f3;
155
+ }
156
+ [theme=agate] .hljs-selector-class, [theme=agate] .hljs-selector-id, [theme=agate] .hljs-template-variable, [theme=agate] .hljs-variable {
157
+ color: #ade5fc;
158
+ }
159
+ [theme=agate] .hljs-meta-string, [theme=agate] .hljs-string {
160
+ color: #a2fca2;
161
+ }
162
+ [theme=agate] .hljs-attr, [theme=agate] .hljs-quote, [theme=agate] .hljs-selector-attr {
163
+ color: #7bd694;
164
+ }
165
+ [theme=agate] .hljs-tag .hljs-attr {
166
+ color: inherit;
167
+ }
168
+ [theme=agate] .hljs-attribute, [theme=agate] .hljs-title, [theme=agate] .hljs-type {
169
+ color: #ffa;
170
+ }
171
+ [theme=agate] .hljs-number, [theme=agate] .hljs-symbol {
172
+ color: #d36363;
173
+ }
174
+ [theme=agate] .hljs-bullet, [theme=agate] .hljs-template-tag {
175
+ color: #b8d8a2;
176
+ }
177
+ [theme=agate] .hljs-built_in, [theme=agate] .hljs-keyword, [theme=agate] .hljs-literal, [theme=agate] .hljs-selector-tag {
178
+ color: #fcc28c;
179
+ }
180
+ [theme=agate] .hljs-code, [theme=agate] .hljs-comment, [theme=agate] .hljs-formula {
181
+ color: #888;
182
+ }
183
+ [theme=agate] .hljs-link, [theme=agate] .hljs-regexp, [theme=agate] .hljs-selector-pseudo {
184
+ color: #c6b4f0;
185
+ }
186
+ [theme=agate] .hljs-meta {
187
+ color: #fc9b9b;
188
+ }
189
+ [theme=agate] .hljs-deletion {
190
+ background: #fc9b9b;
191
+ color: #333;
192
+ }
193
+ [theme=agate] .hljs-addition {
194
+ background: #a2fca2;
195
+ color: #333;
196
+ }
197
+ [theme=agate] .hljs-subst {
198
+ color: #fff;
199
+ }
200
+ [theme=agate] .hljs a {
201
+ color: inherit;
202
+ }
203
+ [theme=agate] .hljs a:focus, [theme=agate] .hljs a:hover {
204
+ color: inherit;
205
+ text-decoration: underline;
206
+ }
207
+ [theme=agate] .hljs mark {
208
+ background: #555;
209
+ color: inherit;
210
+ }
211
+
212
+ [theme=an-old-hope] {
213
+ /*!
214
+ Theme: An Old Hope – Star Wars Syntax
215
+ Author: (c) Gustavo Costa <gusbemacbe@gmail.com>
216
+ Maintainer: @gusbemacbe
217
+
218
+ Original theme - Ocean Dark Theme – by https://github.com/gavsiu
219
+ Based on Jesse Leite's Atom syntax theme 'An Old Hope'
220
+ https://github.com/JesseLeite/an-old-hope-syntax-atom
221
+ */
222
+ }
223
+ [theme=an-old-hope] pre code.hljs {
224
+ display: block;
225
+ overflow-x: auto;
226
+ padding: 1em;
227
+ }
228
+ [theme=an-old-hope] code.hljs {
229
+ padding: 3px 5px;
230
+ }
231
+ [theme=an-old-hope] .hljs {
232
+ background: #1c1d21;
233
+ color: #c0c5ce;
234
+ }
235
+ [theme=an-old-hope] .hljs-comment, [theme=an-old-hope] .hljs-quote {
236
+ color: #b6b18b;
237
+ }
238
+ [theme=an-old-hope] .hljs-deletion, [theme=an-old-hope] .hljs-name, [theme=an-old-hope] .hljs-regexp, [theme=an-old-hope] .hljs-selector-class, [theme=an-old-hope] .hljs-selector-id, [theme=an-old-hope] .hljs-tag, [theme=an-old-hope] .hljs-template-variable, [theme=an-old-hope] .hljs-variable {
239
+ color: #eb3c54;
240
+ }
241
+ [theme=an-old-hope] .hljs-built_in, [theme=an-old-hope] .hljs-link, [theme=an-old-hope] .hljs-literal, [theme=an-old-hope] .hljs-meta, [theme=an-old-hope] .hljs-number, [theme=an-old-hope] .hljs-params, [theme=an-old-hope] .hljs-type {
242
+ color: #e7ce56;
243
+ }
244
+ [theme=an-old-hope] .hljs-attribute {
245
+ color: #ee7c2b;
246
+ }
247
+ [theme=an-old-hope] .hljs-addition, [theme=an-old-hope] .hljs-bullet, [theme=an-old-hope] .hljs-string, [theme=an-old-hope] .hljs-symbol {
248
+ color: #4fb4d7;
249
+ }
250
+ [theme=an-old-hope] .hljs-section, [theme=an-old-hope] .hljs-title {
251
+ color: #78bb65;
252
+ }
253
+ [theme=an-old-hope] .hljs-keyword, [theme=an-old-hope] .hljs-selector-tag {
254
+ color: #b45ea4;
255
+ }
256
+ [theme=an-old-hope] .hljs-emphasis {
257
+ font-style: italic;
258
+ }
259
+ [theme=an-old-hope] .hljs-strong {
260
+ font-weight: 700;
261
+ }
262
+
263
+ [theme=androidstudio] pre code.hljs {
264
+ display: block;
265
+ overflow-x: auto;
266
+ padding: 1em;
267
+ }
268
+ [theme=androidstudio] code.hljs {
269
+ padding: 3px 5px;
270
+ }
271
+ [theme=androidstudio] .hljs {
272
+ color: #a9b7c6;
273
+ background: #282b2e;
274
+ }
275
+ [theme=androidstudio] .hljs-bullet, [theme=androidstudio] .hljs-literal, [theme=androidstudio] .hljs-number, [theme=androidstudio] .hljs-symbol {
276
+ color: #6897bb;
277
+ }
278
+ [theme=androidstudio] .hljs-deletion, [theme=androidstudio] .hljs-keyword, [theme=androidstudio] .hljs-selector-tag {
279
+ color: #cc7832;
280
+ }
281
+ [theme=androidstudio] .hljs-link, [theme=androidstudio] .hljs-template-variable, [theme=androidstudio] .hljs-variable {
282
+ color: #629755;
283
+ }
284
+ [theme=androidstudio] .hljs-comment, [theme=androidstudio] .hljs-quote {
285
+ color: grey;
286
+ }
287
+ [theme=androidstudio] .hljs-meta {
288
+ color: #bbb529;
289
+ }
290
+ [theme=androidstudio] .hljs-addition, [theme=androidstudio] .hljs-attribute, [theme=androidstudio] .hljs-string {
291
+ color: #6a8759;
292
+ }
293
+ [theme=androidstudio] .hljs-section, [theme=androidstudio] .hljs-title, [theme=androidstudio] .hljs-type {
294
+ color: #ffc66d;
295
+ }
296
+ [theme=androidstudio] .hljs-name, [theme=androidstudio] .hljs-selector-class, [theme=androidstudio] .hljs-selector-id {
297
+ color: #e8bf6a;
298
+ }
299
+ [theme=androidstudio] .hljs-emphasis {
300
+ font-style: italic;
301
+ }
302
+ [theme=androidstudio] .hljs-strong {
303
+ font-weight: 700;
304
+ }
305
+
306
+ [theme=arduino-light] pre code.hljs {
307
+ display: block;
308
+ overflow-x: auto;
309
+ padding: 1em;
310
+ }
311
+ [theme=arduino-light] code.hljs {
312
+ padding: 3px 5px;
313
+ }
314
+ [theme=arduino-light] .hljs {
315
+ background: #fff;
316
+ color: #434f54;
317
+ }
318
+ [theme=arduino-light] .hljs-subst {
319
+ color: #434f54;
320
+ }
321
+ [theme=arduino-light] .hljs-attribute, [theme=arduino-light] .hljs-doctag, [theme=arduino-light] .hljs-keyword, [theme=arduino-light] .hljs-name, [theme=arduino-light] .hljs-selector-tag {
322
+ color: #00979d;
323
+ }
324
+ [theme=arduino-light] .hljs-addition, [theme=arduino-light] .hljs-built_in, [theme=arduino-light] .hljs-bullet, [theme=arduino-light] .hljs-code, [theme=arduino-light] .hljs-literal {
325
+ color: #d35400;
326
+ }
327
+ [theme=arduino-light] .hljs-link, [theme=arduino-light] .hljs-regexp, [theme=arduino-light] .hljs-selector-attr, [theme=arduino-light] .hljs-selector-pseudo, [theme=arduino-light] .hljs-symbol, [theme=arduino-light] .hljs-template-variable, [theme=arduino-light] .hljs-variable {
328
+ color: #00979d;
329
+ }
330
+ [theme=arduino-light] .hljs-deletion, [theme=arduino-light] .hljs-quote, [theme=arduino-light] .hljs-selector-class, [theme=arduino-light] .hljs-selector-id, [theme=arduino-light] .hljs-string, [theme=arduino-light] .hljs-template-tag, [theme=arduino-light] .hljs-type {
331
+ color: #005c5f;
332
+ }
333
+ [theme=arduino-light] .hljs-comment {
334
+ color: rgba(149, 165, 166, 0.8);
335
+ }
336
+ [theme=arduino-light] .hljs-meta .hljs-keyword {
337
+ color: #728e00;
338
+ }
339
+ [theme=arduino-light] .hljs-meta {
340
+ color: #434f54;
341
+ }
342
+ [theme=arduino-light] .hljs-emphasis {
343
+ font-style: italic;
344
+ }
345
+ [theme=arduino-light] .hljs-strong {
346
+ font-weight: 700;
347
+ }
348
+ [theme=arduino-light] .hljs-function {
349
+ color: #728e00;
350
+ }
351
+ [theme=arduino-light] .hljs-section, [theme=arduino-light] .hljs-title {
352
+ color: #800;
353
+ font-weight: 700;
354
+ }
355
+ [theme=arduino-light] .hljs-number {
356
+ color: #8a7b52;
357
+ }
358
+
359
+ [theme=arta] pre code.hljs {
360
+ display: block;
361
+ overflow-x: auto;
362
+ padding: 1em;
363
+ }
364
+ [theme=arta] code.hljs {
365
+ padding: 3px 5px;
366
+ }
367
+ [theme=arta] .hljs {
368
+ background: #222;
369
+ color: #aaa;
370
+ }
371
+ [theme=arta] .hljs-subst {
372
+ color: #aaa;
373
+ }
374
+ [theme=arta] .hljs-section {
375
+ color: #fff;
376
+ }
377
+ [theme=arta] .hljs-comment, [theme=arta] .hljs-meta, [theme=arta] .hljs-quote {
378
+ color: #444;
379
+ }
380
+ [theme=arta] .hljs-bullet, [theme=arta] .hljs-regexp, [theme=arta] .hljs-string, [theme=arta] .hljs-symbol {
381
+ color: #fc3;
382
+ }
383
+ [theme=arta] .hljs-addition, [theme=arta] .hljs-number {
384
+ color: #0c6;
385
+ }
386
+ [theme=arta] .hljs-attribute, [theme=arta] .hljs-built_in, [theme=arta] .hljs-link, [theme=arta] .hljs-literal, [theme=arta] .hljs-template-variable, [theme=arta] .hljs-type {
387
+ color: #32aaee;
388
+ }
389
+ [theme=arta] .hljs-keyword, [theme=arta] .hljs-name, [theme=arta] .hljs-selector-class, [theme=arta] .hljs-selector-id, [theme=arta] .hljs-selector-tag {
390
+ color: #64a;
391
+ }
392
+ [theme=arta] .hljs-deletion, [theme=arta] .hljs-template-tag, [theme=arta] .hljs-title, [theme=arta] .hljs-variable {
393
+ color: #b16;
394
+ }
395
+ [theme=arta] .hljs-doctag, [theme=arta] .hljs-section, [theme=arta] .hljs-strong {
396
+ font-weight: 700;
397
+ }
398
+ [theme=arta] .hljs-emphasis {
399
+ font-style: italic;
400
+ }
401
+
402
+ [theme=ascetic] pre code.hljs {
403
+ display: block;
404
+ overflow-x: auto;
405
+ padding: 1em;
406
+ }
407
+ [theme=ascetic] code.hljs {
408
+ padding: 3px 5px;
409
+ }
410
+ [theme=ascetic] .hljs {
411
+ background: #fff;
412
+ color: #000;
413
+ }
414
+ [theme=ascetic] .hljs-addition, [theme=ascetic] .hljs-attribute, [theme=ascetic] .hljs-bullet, [theme=ascetic] .hljs-link, [theme=ascetic] .hljs-section, [theme=ascetic] .hljs-string, [theme=ascetic] .hljs-symbol, [theme=ascetic] .hljs-template-variable, [theme=ascetic] .hljs-variable {
415
+ color: #888;
416
+ }
417
+ [theme=ascetic] .hljs-comment, [theme=ascetic] .hljs-deletion, [theme=ascetic] .hljs-meta, [theme=ascetic] .hljs-quote {
418
+ color: #ccc;
419
+ }
420
+ [theme=ascetic] .hljs-keyword, [theme=ascetic] .hljs-name, [theme=ascetic] .hljs-section, [theme=ascetic] .hljs-selector-tag, [theme=ascetic] .hljs-strong, [theme=ascetic] .hljs-type {
421
+ font-weight: 700;
422
+ }
423
+ [theme=ascetic] .hljs-emphasis {
424
+ font-style: italic;
425
+ }
426
+
427
+ [theme=atom-one-dark-reasonable] pre code.hljs {
428
+ display: block;
429
+ overflow-x: auto;
430
+ padding: 1em;
431
+ }
432
+ [theme=atom-one-dark-reasonable] code.hljs {
433
+ padding: 3px 5px;
434
+ }
435
+ [theme=atom-one-dark-reasonable] .hljs {
436
+ color: #abb2bf;
437
+ background: #282c34;
438
+ }
439
+ [theme=atom-one-dark-reasonable] .hljs-keyword, [theme=atom-one-dark-reasonable] .hljs-operator, [theme=atom-one-dark-reasonable] .hljs-pattern-match {
440
+ color: #f92672;
441
+ }
442
+ [theme=atom-one-dark-reasonable] .hljs-function, [theme=atom-one-dark-reasonable] .hljs-pattern-match .hljs-constructor {
443
+ color: #61aeee;
444
+ }
445
+ [theme=atom-one-dark-reasonable] .hljs-function .hljs-params {
446
+ color: #a6e22e;
447
+ }
448
+ [theme=atom-one-dark-reasonable] .hljs-function .hljs-params .hljs-typing {
449
+ color: #fd971f;
450
+ }
451
+ [theme=atom-one-dark-reasonable] .hljs-module-access .hljs-module {
452
+ color: #7e57c2;
453
+ }
454
+ [theme=atom-one-dark-reasonable] .hljs-constructor {
455
+ color: #e2b93d;
456
+ }
457
+ [theme=atom-one-dark-reasonable] .hljs-constructor .hljs-string {
458
+ color: #9ccc65;
459
+ }
460
+ [theme=atom-one-dark-reasonable] .hljs-comment, [theme=atom-one-dark-reasonable] .hljs-quote {
461
+ color: #b18eb1;
462
+ font-style: italic;
463
+ }
464
+ [theme=atom-one-dark-reasonable] .hljs-doctag, [theme=atom-one-dark-reasonable] .hljs-formula {
465
+ color: #c678dd;
466
+ }
467
+ [theme=atom-one-dark-reasonable] .hljs-deletion, [theme=atom-one-dark-reasonable] .hljs-name, [theme=atom-one-dark-reasonable] .hljs-section, [theme=atom-one-dark-reasonable] .hljs-selector-tag, [theme=atom-one-dark-reasonable] .hljs-subst {
468
+ color: #e06c75;
469
+ }
470
+ [theme=atom-one-dark-reasonable] .hljs-literal {
471
+ color: #56b6c2;
472
+ }
473
+ [theme=atom-one-dark-reasonable] .hljs-addition, [theme=atom-one-dark-reasonable] .hljs-attribute, [theme=atom-one-dark-reasonable] .hljs-meta .hljs-string, [theme=atom-one-dark-reasonable] .hljs-regexp, [theme=atom-one-dark-reasonable] .hljs-string {
474
+ color: #98c379;
475
+ }
476
+ [theme=atom-one-dark-reasonable] .hljs-built_in, [theme=atom-one-dark-reasonable] .hljs-class .hljs-title, [theme=atom-one-dark-reasonable] .hljs-title.class_ {
477
+ color: #e6c07b;
478
+ }
479
+ [theme=atom-one-dark-reasonable] .hljs-attr, [theme=atom-one-dark-reasonable] .hljs-number, [theme=atom-one-dark-reasonable] .hljs-selector-attr, [theme=atom-one-dark-reasonable] .hljs-selector-class, [theme=atom-one-dark-reasonable] .hljs-selector-pseudo, [theme=atom-one-dark-reasonable] .hljs-template-variable, [theme=atom-one-dark-reasonable] .hljs-type, [theme=atom-one-dark-reasonable] .hljs-variable {
480
+ color: #d19a66;
481
+ }
482
+ [theme=atom-one-dark-reasonable] .hljs-bullet, [theme=atom-one-dark-reasonable] .hljs-link, [theme=atom-one-dark-reasonable] .hljs-meta, [theme=atom-one-dark-reasonable] .hljs-selector-id, [theme=atom-one-dark-reasonable] .hljs-symbol, [theme=atom-one-dark-reasonable] .hljs-title {
483
+ color: #61aeee;
484
+ }
485
+ [theme=atom-one-dark-reasonable] .hljs-emphasis {
486
+ font-style: italic;
487
+ }
488
+ [theme=atom-one-dark-reasonable] .hljs-strong {
489
+ font-weight: 700;
490
+ }
491
+ [theme=atom-one-dark-reasonable] .hljs-link {
492
+ text-decoration: underline;
493
+ }
494
+
495
+ [theme=atom-one-dark] pre code.hljs {
496
+ display: block;
497
+ overflow-x: auto;
498
+ padding: 1em;
499
+ }
500
+ [theme=atom-one-dark] code.hljs {
501
+ padding: 3px 5px;
502
+ }
503
+ [theme=atom-one-dark] .hljs {
504
+ color: #abb2bf;
505
+ background: #282c34;
506
+ }
507
+ [theme=atom-one-dark] .hljs-comment, [theme=atom-one-dark] .hljs-quote {
508
+ color: #5c6370;
509
+ font-style: italic;
510
+ }
511
+ [theme=atom-one-dark] .hljs-doctag, [theme=atom-one-dark] .hljs-formula, [theme=atom-one-dark] .hljs-keyword {
512
+ color: #c678dd;
513
+ }
514
+ [theme=atom-one-dark] .hljs-deletion, [theme=atom-one-dark] .hljs-name, [theme=atom-one-dark] .hljs-section, [theme=atom-one-dark] .hljs-selector-tag, [theme=atom-one-dark] .hljs-subst {
515
+ color: #e06c75;
516
+ }
517
+ [theme=atom-one-dark] .hljs-literal {
518
+ color: #56b6c2;
519
+ }
520
+ [theme=atom-one-dark] .hljs-addition, [theme=atom-one-dark] .hljs-attribute, [theme=atom-one-dark] .hljs-meta .hljs-string, [theme=atom-one-dark] .hljs-regexp, [theme=atom-one-dark] .hljs-string {
521
+ color: #98c379;
522
+ }
523
+ [theme=atom-one-dark] .hljs-attr, [theme=atom-one-dark] .hljs-number, [theme=atom-one-dark] .hljs-selector-attr, [theme=atom-one-dark] .hljs-selector-class, [theme=atom-one-dark] .hljs-selector-pseudo, [theme=atom-one-dark] .hljs-template-variable, [theme=atom-one-dark] .hljs-type, [theme=atom-one-dark] .hljs-variable {
524
+ color: #d19a66;
525
+ }
526
+ [theme=atom-one-dark] .hljs-bullet, [theme=atom-one-dark] .hljs-link, [theme=atom-one-dark] .hljs-meta, [theme=atom-one-dark] .hljs-selector-id, [theme=atom-one-dark] .hljs-symbol, [theme=atom-one-dark] .hljs-title {
527
+ color: #61aeee;
528
+ }
529
+ [theme=atom-one-dark] .hljs-built_in, [theme=atom-one-dark] .hljs-class .hljs-title, [theme=atom-one-dark] .hljs-title.class_ {
530
+ color: #e6c07b;
531
+ }
532
+ [theme=atom-one-dark] .hljs-emphasis {
533
+ font-style: italic;
534
+ }
535
+ [theme=atom-one-dark] .hljs-strong {
536
+ font-weight: 700;
537
+ }
538
+ [theme=atom-one-dark] .hljs-link {
539
+ text-decoration: underline;
540
+ }
541
+
542
+ [theme=atom-one-light] pre code.hljs {
543
+ display: block;
544
+ overflow-x: auto;
545
+ padding: 1em;
546
+ }
547
+ [theme=atom-one-light] code.hljs {
548
+ padding: 3px 5px;
549
+ }
550
+ [theme=atom-one-light] .hljs {
551
+ color: #383a42;
552
+ background: #fafafa;
553
+ }
554
+ [theme=atom-one-light] .hljs-comment, [theme=atom-one-light] .hljs-quote {
555
+ color: #a0a1a7;
556
+ font-style: italic;
557
+ }
558
+ [theme=atom-one-light] .hljs-doctag, [theme=atom-one-light] .hljs-formula, [theme=atom-one-light] .hljs-keyword {
559
+ color: #a626a4;
560
+ }
561
+ [theme=atom-one-light] .hljs-deletion, [theme=atom-one-light] .hljs-name, [theme=atom-one-light] .hljs-section, [theme=atom-one-light] .hljs-selector-tag, [theme=atom-one-light] .hljs-subst {
562
+ color: #e45649;
563
+ }
564
+ [theme=atom-one-light] .hljs-literal {
565
+ color: #0184bb;
566
+ }
567
+ [theme=atom-one-light] .hljs-addition, [theme=atom-one-light] .hljs-attribute, [theme=atom-one-light] .hljs-meta .hljs-string, [theme=atom-one-light] .hljs-regexp, [theme=atom-one-light] .hljs-string {
568
+ color: #50a14f;
569
+ }
570
+ [theme=atom-one-light] .hljs-attr, [theme=atom-one-light] .hljs-number, [theme=atom-one-light] .hljs-selector-attr, [theme=atom-one-light] .hljs-selector-class, [theme=atom-one-light] .hljs-selector-pseudo, [theme=atom-one-light] .hljs-template-variable, [theme=atom-one-light] .hljs-type, [theme=atom-one-light] .hljs-variable {
571
+ color: #986801;
572
+ }
573
+ [theme=atom-one-light] .hljs-bullet, [theme=atom-one-light] .hljs-link, [theme=atom-one-light] .hljs-meta, [theme=atom-one-light] .hljs-selector-id, [theme=atom-one-light] .hljs-symbol, [theme=atom-one-light] .hljs-title {
574
+ color: #4078f2;
575
+ }
576
+ [theme=atom-one-light] .hljs-built_in, [theme=atom-one-light] .hljs-class .hljs-title, [theme=atom-one-light] .hljs-title.class_ {
577
+ color: #c18401;
578
+ }
579
+ [theme=atom-one-light] .hljs-emphasis {
580
+ font-style: italic;
581
+ }
582
+ [theme=atom-one-light] .hljs-strong {
583
+ font-weight: 700;
584
+ }
585
+ [theme=atom-one-light] .hljs-link {
586
+ text-decoration: underline;
587
+ }
588
+
589
+ [theme=brown-paper] pre code.hljs {
590
+ display: block;
591
+ overflow-x: auto;
592
+ padding: 1em;
593
+ }
594
+ [theme=brown-paper] code.hljs {
595
+ padding: 3px 5px;
596
+ }
597
+ [theme=brown-paper] .hljs {
598
+ color: #363c69;
599
+ background: #b7a68e;
600
+ }
601
+ [theme=brown-paper] .hljs-keyword, [theme=brown-paper] .hljs-literal, [theme=brown-paper] .hljs-selector-tag {
602
+ color: #059;
603
+ }
604
+ [theme=brown-paper] .hljs-addition, [theme=brown-paper] .hljs-attribute, [theme=brown-paper] .hljs-built_in, [theme=brown-paper] .hljs-bullet, [theme=brown-paper] .hljs-link, [theme=brown-paper] .hljs-name, [theme=brown-paper] .hljs-section, [theme=brown-paper] .hljs-string, [theme=brown-paper] .hljs-symbol, [theme=brown-paper] .hljs-template-tag, [theme=brown-paper] .hljs-template-variable, [theme=brown-paper] .hljs-title, [theme=brown-paper] .hljs-type, [theme=brown-paper] .hljs-variable {
605
+ color: #2c009f;
606
+ }
607
+ [theme=brown-paper] .hljs-comment, [theme=brown-paper] .hljs-deletion, [theme=brown-paper] .hljs-meta, [theme=brown-paper] .hljs-quote {
608
+ color: #802022;
609
+ }
610
+ [theme=brown-paper] .hljs-doctag, [theme=brown-paper] .hljs-keyword, [theme=brown-paper] .hljs-literal, [theme=brown-paper] .hljs-name, [theme=brown-paper] .hljs-section, [theme=brown-paper] .hljs-selector-tag, [theme=brown-paper] .hljs-strong, [theme=brown-paper] .hljs-title, [theme=brown-paper] .hljs-type {
611
+ font-weight: 700;
612
+ }
613
+ [theme=brown-paper] .hljs-emphasis {
614
+ font-style: italic;
615
+ }
616
+
617
+ [theme=codepen-embed] pre code.hljs {
618
+ display: block;
619
+ overflow-x: auto;
620
+ padding: 1em;
621
+ }
622
+ [theme=codepen-embed] code.hljs {
623
+ padding: 3px 5px;
624
+ }
625
+ [theme=codepen-embed] .hljs {
626
+ background: #222;
627
+ color: #fff;
628
+ }
629
+ [theme=codepen-embed] .hljs-comment, [theme=codepen-embed] .hljs-quote {
630
+ color: #777;
631
+ }
632
+ [theme=codepen-embed] .hljs-built_in, [theme=codepen-embed] .hljs-bullet, [theme=codepen-embed] .hljs-deletion, [theme=codepen-embed] .hljs-link, [theme=codepen-embed] .hljs-literal, [theme=codepen-embed] .hljs-meta, [theme=codepen-embed] .hljs-number, [theme=codepen-embed] .hljs-params, [theme=codepen-embed] .hljs-regexp, [theme=codepen-embed] .hljs-symbol, [theme=codepen-embed] .hljs-tag, [theme=codepen-embed] .hljs-template-variable, [theme=codepen-embed] .hljs-variable {
633
+ color: #ab875d;
634
+ }
635
+ [theme=codepen-embed] .hljs-attribute, [theme=codepen-embed] .hljs-name, [theme=codepen-embed] .hljs-section, [theme=codepen-embed] .hljs-selector-class, [theme=codepen-embed] .hljs-selector-id, [theme=codepen-embed] .hljs-title, [theme=codepen-embed] .hljs-type {
636
+ color: #9b869b;
637
+ }
638
+ [theme=codepen-embed] .hljs-addition, [theme=codepen-embed] .hljs-keyword, [theme=codepen-embed] .hljs-selector-tag, [theme=codepen-embed] .hljs-string {
639
+ color: #8f9c6c;
640
+ }
641
+ [theme=codepen-embed] .hljs-emphasis {
642
+ font-style: italic;
643
+ }
644
+ [theme=codepen-embed] .hljs-strong {
645
+ font-weight: 700;
646
+ }
647
+
648
+ [theme=color-brewer] pre code.hljs {
649
+ display: block;
650
+ overflow-x: auto;
651
+ padding: 1em;
652
+ }
653
+ [theme=color-brewer] code.hljs {
654
+ padding: 3px 5px;
655
+ }
656
+ [theme=color-brewer] .hljs {
657
+ color: #000;
658
+ background: #fff;
659
+ }
660
+ [theme=color-brewer] .hljs-addition, [theme=color-brewer] .hljs-meta, [theme=color-brewer] .hljs-string, [theme=color-brewer] .hljs-symbol, [theme=color-brewer] .hljs-template-tag, [theme=color-brewer] .hljs-template-variable {
661
+ color: #756bb1;
662
+ }
663
+ [theme=color-brewer] .hljs-comment, [theme=color-brewer] .hljs-quote {
664
+ color: #636363;
665
+ }
666
+ [theme=color-brewer] .hljs-bullet, [theme=color-brewer] .hljs-link, [theme=color-brewer] .hljs-literal, [theme=color-brewer] .hljs-number, [theme=color-brewer] .hljs-regexp {
667
+ color: #31a354;
668
+ }
669
+ [theme=color-brewer] .hljs-deletion, [theme=color-brewer] .hljs-variable {
670
+ color: #88f;
671
+ }
672
+ [theme=color-brewer] .hljs-built_in, [theme=color-brewer] .hljs-doctag, [theme=color-brewer] .hljs-keyword, [theme=color-brewer] .hljs-name, [theme=color-brewer] .hljs-section, [theme=color-brewer] .hljs-selector-class, [theme=color-brewer] .hljs-selector-id, [theme=color-brewer] .hljs-selector-tag, [theme=color-brewer] .hljs-strong, [theme=color-brewer] .hljs-tag, [theme=color-brewer] .hljs-title, [theme=color-brewer] .hljs-type {
673
+ color: #3182bd;
674
+ }
675
+ [theme=color-brewer] .hljs-emphasis {
676
+ font-style: italic;
677
+ }
678
+ [theme=color-brewer] .hljs-attribute {
679
+ color: #e6550d;
680
+ }
681
+
682
+ [theme=dark] pre code.hljs {
683
+ display: block;
684
+ overflow-x: auto;
685
+ padding: 1em;
686
+ }
687
+ [theme=dark] code.hljs {
688
+ padding: 3px 5px;
689
+ }
690
+ [theme=dark] .hljs {
691
+ color: #ddd;
692
+ background: #303030;
693
+ }
694
+ [theme=dark] .hljs-keyword, [theme=dark] .hljs-link, [theme=dark] .hljs-literal, [theme=dark] .hljs-section, [theme=dark] .hljs-selector-tag {
695
+ color: #fff;
696
+ }
697
+ [theme=dark] .hljs-addition, [theme=dark] .hljs-attribute, [theme=dark] .hljs-built_in, [theme=dark] .hljs-bullet, [theme=dark] .hljs-name, [theme=dark] .hljs-string, [theme=dark] .hljs-symbol, [theme=dark] .hljs-template-tag, [theme=dark] .hljs-template-variable, [theme=dark] .hljs-title, [theme=dark] .hljs-type, [theme=dark] .hljs-variable {
698
+ color: #d88;
699
+ }
700
+ [theme=dark] .hljs-comment, [theme=dark] .hljs-deletion, [theme=dark] .hljs-meta, [theme=dark] .hljs-quote {
701
+ color: #979797;
702
+ }
703
+ [theme=dark] .hljs-doctag, [theme=dark] .hljs-keyword, [theme=dark] .hljs-literal, [theme=dark] .hljs-name, [theme=dark] .hljs-section, [theme=dark] .hljs-selector-tag, [theme=dark] .hljs-strong, [theme=dark] .hljs-title, [theme=dark] .hljs-type {
704
+ font-weight: 700;
705
+ }
706
+ [theme=dark] .hljs-emphasis {
707
+ font-style: italic;
708
+ }
709
+
710
+ [theme=default] {
711
+ /*!
712
+ Theme: Default
713
+ Description: Original highlight.js style
714
+ Author: (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
715
+ Maintainer: @highlightjs/core-team
716
+ Website: https://highlightjs.org/
717
+ License: see project LICENSE
718
+ Touched: 2021
719
+ */
720
+ }
721
+ [theme=default] pre code.hljs {
722
+ display: block;
723
+ overflow-x: auto;
724
+ padding: 1em;
725
+ }
726
+ [theme=default] code.hljs {
727
+ padding: 3px 5px;
728
+ }
729
+ [theme=default] .hljs {
730
+ background: #f3f3f3;
731
+ color: #444;
732
+ }
733
+ [theme=default] .hljs-comment {
734
+ color: #697070;
735
+ }
736
+ [theme=default] .hljs-punctuation, [theme=default] .hljs-tag {
737
+ color: #444a;
738
+ }
739
+ [theme=default] .hljs-tag .hljs-attr, [theme=default] .hljs-tag .hljs-name {
740
+ color: #444;
741
+ }
742
+ [theme=default] .hljs-attribute, [theme=default] .hljs-doctag, [theme=default] .hljs-keyword, [theme=default] .hljs-meta .hljs-keyword, [theme=default] .hljs-name, [theme=default] .hljs-selector-tag {
743
+ font-weight: 700;
744
+ }
745
+ [theme=default] .hljs-deletion, [theme=default] .hljs-number, [theme=default] .hljs-quote, [theme=default] .hljs-selector-class, [theme=default] .hljs-selector-id, [theme=default] .hljs-string, [theme=default] .hljs-template-tag, [theme=default] .hljs-type {
746
+ color: #800;
747
+ }
748
+ [theme=default] .hljs-section, [theme=default] .hljs-title {
749
+ color: #800;
750
+ font-weight: 700;
751
+ }
752
+ [theme=default] .hljs-link, [theme=default] .hljs-operator, [theme=default] .hljs-regexp, [theme=default] .hljs-selector-attr, [theme=default] .hljs-selector-pseudo, [theme=default] .hljs-symbol, [theme=default] .hljs-template-variable, [theme=default] .hljs-variable {
753
+ color: #ab5656;
754
+ }
755
+ [theme=default] .hljs-literal {
756
+ color: #695;
757
+ }
758
+ [theme=default] .hljs-addition, [theme=default] .hljs-built_in, [theme=default] .hljs-bullet, [theme=default] .hljs-code {
759
+ color: #397300;
760
+ }
761
+ [theme=default] .hljs-meta {
762
+ color: #1f7199;
763
+ }
764
+ [theme=default] .hljs-meta .hljs-string {
765
+ color: #38a;
766
+ }
767
+ [theme=default] .hljs-emphasis {
768
+ font-style: italic;
769
+ }
770
+ [theme=default] .hljs-strong {
771
+ font-weight: 700;
772
+ }
773
+
774
+ [theme=devibeans] {
775
+ /*!
776
+ Theme: devibeans (dark)
777
+ Author: @terminaldweller
778
+ Maintainer: @terminaldweller
779
+
780
+ Inspired by vim's jellybeans theme (https://github.com/nanotech/jellybeans.vim)
781
+ */
782
+ }
783
+ [theme=devibeans] pre code.hljs {
784
+ display: block;
785
+ overflow-x: auto;
786
+ padding: 1em;
787
+ }
788
+ [theme=devibeans] code.hljs {
789
+ padding: 3px 5px;
790
+ }
791
+ [theme=devibeans] .hljs {
792
+ background: #000;
793
+ color: #a39e9b;
794
+ }
795
+ [theme=devibeans] .hljs-attr, [theme=devibeans] .hljs-template-tag {
796
+ color: #8787d7;
797
+ }
798
+ [theme=devibeans] .hljs-comment, [theme=devibeans] .hljs-doctag, [theme=devibeans] .hljs-quote {
799
+ color: #396;
800
+ }
801
+ [theme=devibeans] .hljs-params {
802
+ color: #a39e9b;
803
+ }
804
+ [theme=devibeans] .hljs-regexp {
805
+ color: #d700ff;
806
+ }
807
+ [theme=devibeans] .hljs-literal, [theme=devibeans] .hljs-number, [theme=devibeans] .hljs-selector-id, [theme=devibeans] .hljs-tag {
808
+ color: #ef5350;
809
+ }
810
+ [theme=devibeans] .hljs-meta, [theme=devibeans] .hljs-meta .hljs-keyword {
811
+ color: #0087ff;
812
+ }
813
+ [theme=devibeans] .hljs-code, [theme=devibeans] .hljs-formula, [theme=devibeans] .hljs-keyword, [theme=devibeans] .hljs-link, [theme=devibeans] .hljs-selector-attr, [theme=devibeans] .hljs-selector-class, [theme=devibeans] .hljs-selector-pseudo, [theme=devibeans] .hljs-template-variable, [theme=devibeans] .hljs-variable {
814
+ color: #64b5f6;
815
+ }
816
+ [theme=devibeans] .hljs-built_in, [theme=devibeans] .hljs-deletion, [theme=devibeans] .hljs-title {
817
+ color: #ff8700;
818
+ }
819
+ [theme=devibeans] .hljs-attribute, [theme=devibeans] .hljs-function, [theme=devibeans] .hljs-name, [theme=devibeans] .hljs-property, [theme=devibeans] .hljs-section, [theme=devibeans] .hljs-type {
820
+ color: #ffd75f;
821
+ }
822
+ [theme=devibeans] .hljs-addition, [theme=devibeans] .hljs-bullet, [theme=devibeans] .hljs-meta .hljs-string, [theme=devibeans] .hljs-string, [theme=devibeans] .hljs-subst, [theme=devibeans] .hljs-symbol {
823
+ color: #558b2f;
824
+ }
825
+ [theme=devibeans] .hljs-selector-tag {
826
+ color: #96f;
827
+ }
828
+ [theme=devibeans] .hljs-emphasis {
829
+ font-style: italic;
830
+ }
831
+ [theme=devibeans] .hljs-strong {
832
+ font-weight: 700;
833
+ }
834
+
835
+ [theme=docco] pre code.hljs {
836
+ display: block;
837
+ overflow-x: auto;
838
+ padding: 1em;
839
+ }
840
+ [theme=docco] code.hljs {
841
+ padding: 3px 5px;
842
+ }
843
+ [theme=docco] .hljs {
844
+ color: #000;
845
+ background: #f8f8ff;
846
+ }
847
+ [theme=docco] .hljs-comment, [theme=docco] .hljs-quote {
848
+ color: #408080;
849
+ font-style: italic;
850
+ }
851
+ [theme=docco] .hljs-keyword, [theme=docco] .hljs-literal, [theme=docco] .hljs-selector-tag, [theme=docco] .hljs-subst {
852
+ color: #954121;
853
+ }
854
+ [theme=docco] .hljs-number {
855
+ color: #40a070;
856
+ }
857
+ [theme=docco] .hljs-doctag, [theme=docco] .hljs-string {
858
+ color: #219161;
859
+ }
860
+ [theme=docco] .hljs-section, [theme=docco] .hljs-selector-class, [theme=docco] .hljs-selector-id, [theme=docco] .hljs-type {
861
+ color: #19469d;
862
+ }
863
+ [theme=docco] .hljs-params {
864
+ color: #00f;
865
+ }
866
+ [theme=docco] .hljs-title {
867
+ color: #458;
868
+ font-weight: 700;
869
+ }
870
+ [theme=docco] .hljs-attribute, [theme=docco] .hljs-name, [theme=docco] .hljs-tag {
871
+ color: navy;
872
+ font-weight: 400;
873
+ }
874
+ [theme=docco] .hljs-template-variable, [theme=docco] .hljs-variable {
875
+ color: teal;
876
+ }
877
+ [theme=docco] .hljs-link, [theme=docco] .hljs-regexp {
878
+ color: #b68;
879
+ }
880
+ [theme=docco] .hljs-bullet, [theme=docco] .hljs-symbol {
881
+ color: #990073;
882
+ }
883
+ [theme=docco] .hljs-built_in {
884
+ color: #0086b3;
885
+ }
886
+ [theme=docco] .hljs-meta {
887
+ color: #999;
888
+ font-weight: 700;
889
+ }
890
+ [theme=docco] .hljs-deletion {
891
+ background: #fdd;
892
+ }
893
+ [theme=docco] .hljs-addition {
894
+ background: #dfd;
895
+ }
896
+ [theme=docco] .hljs-emphasis {
897
+ font-style: italic;
898
+ }
899
+ [theme=docco] .hljs-strong {
900
+ font-weight: 700;
901
+ }
902
+
903
+ [theme=far] pre code.hljs {
904
+ display: block;
905
+ overflow-x: auto;
906
+ padding: 1em;
907
+ }
908
+ [theme=far] code.hljs {
909
+ padding: 3px 5px;
910
+ }
911
+ [theme=far] .hljs {
912
+ color: #0ff;
913
+ background: navy;
914
+ }
915
+ [theme=far] .hljs-addition, [theme=far] .hljs-attribute, [theme=far] .hljs-built_in, [theme=far] .hljs-bullet, [theme=far] .hljs-string, [theme=far] .hljs-symbol, [theme=far] .hljs-template-tag, [theme=far] .hljs-template-variable {
916
+ color: #ff0;
917
+ }
918
+ [theme=far] .hljs-keyword, [theme=far] .hljs-name, [theme=far] .hljs-section, [theme=far] .hljs-selector-class, [theme=far] .hljs-selector-id, [theme=far] .hljs-selector-tag, [theme=far] .hljs-type, [theme=far] .hljs-variable {
919
+ color: #fff;
920
+ }
921
+ [theme=far] .hljs-comment, [theme=far] .hljs-deletion, [theme=far] .hljs-doctag, [theme=far] .hljs-quote {
922
+ color: #888;
923
+ }
924
+ [theme=far] .hljs-link, [theme=far] .hljs-literal, [theme=far] .hljs-number, [theme=far] .hljs-regexp {
925
+ color: #0f0;
926
+ }
927
+ [theme=far] .hljs-meta {
928
+ color: teal;
929
+ }
930
+ [theme=far] .hljs-keyword, [theme=far] .hljs-name, [theme=far] .hljs-section, [theme=far] .hljs-selector-tag, [theme=far] .hljs-strong, [theme=far] .hljs-title {
931
+ font-weight: 700;
932
+ }
933
+ [theme=far] .hljs-emphasis {
934
+ font-style: italic;
935
+ }
936
+
937
+ [theme=felipec] {
938
+ /*!
939
+ * Theme: FelipeC
940
+ * Author: (c) 2021 Felipe Contreras <felipe.contreras@gmail.com>
941
+ * Website: https://github.com/felipec/vim-felipec
942
+ *
943
+ * Autogenerated with vim-felipec's generator.
944
+ */
945
+ }
946
+ [theme=felipec] pre code.hljs {
947
+ display: block;
948
+ overflow-x: auto;
949
+ padding: 1em;
950
+ }
951
+ [theme=felipec] code.hljs {
952
+ padding: 3px 5px;
953
+ }
954
+ [theme=felipec] .hljs {
955
+ color: #dddde1;
956
+ background: #1e1e22;
957
+ }
958
+ [theme=felipec] .hljs ::selection, [theme=felipec] .hljs::selection {
959
+ color: #1e1e22;
960
+ background: #bf8fef;
961
+ }
962
+ [theme=felipec] .hljs-code, [theme=felipec] .hljs-comment, [theme=felipec] .hljs-quote {
963
+ color: #888896;
964
+ }
965
+ [theme=felipec] .hljs-deletion, [theme=felipec] .hljs-literal, [theme=felipec] .hljs-number {
966
+ color: #ef8f8f;
967
+ }
968
+ [theme=felipec] .hljs-doctag, [theme=felipec] .hljs-meta, [theme=felipec] .hljs-operator, [theme=felipec] .hljs-punctuation, [theme=felipec] .hljs-selector-attr, [theme=felipec] .hljs-subst, [theme=felipec] .hljs-template-variable {
969
+ color: #efbf8f;
970
+ }
971
+ [theme=felipec] .hljs-type {
972
+ color: #efef8f;
973
+ }
974
+ [theme=felipec] .hljs-selector-class, [theme=felipec] .hljs-selector-id, [theme=felipec] .hljs-tag, [theme=felipec] .hljs-title {
975
+ color: #bfef8f;
976
+ }
977
+ [theme=felipec] .hljs-addition, [theme=felipec] .hljs-regexp, [theme=felipec] .hljs-string {
978
+ color: #8fef8f;
979
+ }
980
+ [theme=felipec] .hljs-class, [theme=felipec] .hljs-property {
981
+ color: #8fefbf;
982
+ }
983
+ [theme=felipec] .hljs-name, [theme=felipec] .hljs-selector-tag {
984
+ color: #8fefef;
985
+ }
986
+ [theme=felipec] .hljs-built_in, [theme=felipec] .hljs-keyword {
987
+ color: #8fbfef;
988
+ }
989
+ [theme=felipec] .hljs-bullet, [theme=felipec] .hljs-section {
990
+ color: #8f8fef;
991
+ }
992
+ [theme=felipec] .hljs-selector-pseudo {
993
+ color: #bf8fef;
994
+ }
995
+ [theme=felipec] .hljs-attr, [theme=felipec] .hljs-attribute, [theme=felipec] .hljs-params, [theme=felipec] .hljs-variable {
996
+ color: #ef8fef;
997
+ }
998
+ [theme=felipec] .hljs-link, [theme=felipec] .hljs-symbol {
999
+ color: #ef8fbf;
1000
+ }
1001
+ [theme=felipec] .hljs-literal, [theme=felipec] .hljs-strong, [theme=felipec] .hljs-title {
1002
+ font-weight: 700;
1003
+ }
1004
+ [theme=felipec] .hljs-emphasis {
1005
+ font-style: italic;
1006
+ }
1007
+
1008
+ [theme=foundation] pre code.hljs {
1009
+ display: block;
1010
+ overflow-x: auto;
1011
+ padding: 1em;
1012
+ }
1013
+ [theme=foundation] code.hljs {
1014
+ padding: 3px 5px;
1015
+ }
1016
+ [theme=foundation] .hljs {
1017
+ background: #eee;
1018
+ color: #000;
1019
+ }
1020
+ [theme=foundation] .hljs-addition, [theme=foundation] .hljs-attribute, [theme=foundation] .hljs-emphasis, [theme=foundation] .hljs-link {
1021
+ color: #070;
1022
+ }
1023
+ [theme=foundation] .hljs-emphasis {
1024
+ font-style: italic;
1025
+ }
1026
+ [theme=foundation] .hljs-deletion, [theme=foundation] .hljs-string, [theme=foundation] .hljs-strong {
1027
+ color: #d14;
1028
+ }
1029
+ [theme=foundation] .hljs-strong {
1030
+ font-weight: 700;
1031
+ }
1032
+ [theme=foundation] .hljs-comment, [theme=foundation] .hljs-quote {
1033
+ color: #998;
1034
+ font-style: italic;
1035
+ }
1036
+ [theme=foundation] .hljs-section, [theme=foundation] .hljs-title {
1037
+ color: #900;
1038
+ }
1039
+ [theme=foundation] .hljs-class .hljs-title, [theme=foundation] .hljs-title.class_, [theme=foundation] .hljs-type {
1040
+ color: #458;
1041
+ }
1042
+ [theme=foundation] .hljs-template-variable, [theme=foundation] .hljs-variable {
1043
+ color: #369;
1044
+ }
1045
+ [theme=foundation] .hljs-bullet {
1046
+ color: #970;
1047
+ }
1048
+ [theme=foundation] .hljs-meta {
1049
+ color: #34b;
1050
+ }
1051
+ [theme=foundation] .hljs-code, [theme=foundation] .hljs-keyword, [theme=foundation] .hljs-literal, [theme=foundation] .hljs-number, [theme=foundation] .hljs-selector-tag {
1052
+ color: #099;
1053
+ }
1054
+ [theme=foundation] .hljs-regexp {
1055
+ background-color: #fff0ff;
1056
+ color: #808;
1057
+ }
1058
+ [theme=foundation] .hljs-symbol {
1059
+ color: #990073;
1060
+ }
1061
+ [theme=foundation] .hljs-name, [theme=foundation] .hljs-selector-class, [theme=foundation] .hljs-selector-id, [theme=foundation] .hljs-tag {
1062
+ color: #070;
1063
+ }
1064
+
1065
+ [theme=github-dark-dimmed] {
1066
+ /*!
1067
+ Theme: GitHub Dark Dimmed
1068
+ Description: Dark dimmed theme as seen on github.com
1069
+ Author: github.com
1070
+ Maintainer: @Hirse
1071
+ Updated: 2021-05-15
1072
+
1073
+ Colors taken from GitHub's CSS
1074
+ */
1075
+ }
1076
+ [theme=github-dark-dimmed] pre code.hljs {
1077
+ display: block;
1078
+ overflow-x: auto;
1079
+ padding: 1em;
1080
+ }
1081
+ [theme=github-dark-dimmed] code.hljs {
1082
+ padding: 3px 5px;
1083
+ }
1084
+ [theme=github-dark-dimmed] .hljs {
1085
+ color: #adbac7;
1086
+ background: #22272e;
1087
+ }
1088
+ [theme=github-dark-dimmed] .hljs-doctag, [theme=github-dark-dimmed] .hljs-keyword, [theme=github-dark-dimmed] .hljs-meta .hljs-keyword, [theme=github-dark-dimmed] .hljs-template-tag, [theme=github-dark-dimmed] .hljs-template-variable, [theme=github-dark-dimmed] .hljs-type, [theme=github-dark-dimmed] .hljs-variable.language_ {
1089
+ color: #f47067;
1090
+ }
1091
+ [theme=github-dark-dimmed] .hljs-title, [theme=github-dark-dimmed] .hljs-title.class_, [theme=github-dark-dimmed] .hljs-title.class_.inherited__, [theme=github-dark-dimmed] .hljs-title.function_ {
1092
+ color: #dcbdfb;
1093
+ }
1094
+ [theme=github-dark-dimmed] .hljs-attr, [theme=github-dark-dimmed] .hljs-attribute, [theme=github-dark-dimmed] .hljs-literal, [theme=github-dark-dimmed] .hljs-meta, [theme=github-dark-dimmed] .hljs-number, [theme=github-dark-dimmed] .hljs-operator, [theme=github-dark-dimmed] .hljs-selector-attr, [theme=github-dark-dimmed] .hljs-selector-class, [theme=github-dark-dimmed] .hljs-selector-id, [theme=github-dark-dimmed] .hljs-variable {
1095
+ color: #6cb6ff;
1096
+ }
1097
+ [theme=github-dark-dimmed] .hljs-meta .hljs-string, [theme=github-dark-dimmed] .hljs-regexp, [theme=github-dark-dimmed] .hljs-string {
1098
+ color: #96d0ff;
1099
+ }
1100
+ [theme=github-dark-dimmed] .hljs-built_in, [theme=github-dark-dimmed] .hljs-symbol {
1101
+ color: #f69d50;
1102
+ }
1103
+ [theme=github-dark-dimmed] .hljs-code, [theme=github-dark-dimmed] .hljs-comment, [theme=github-dark-dimmed] .hljs-formula {
1104
+ color: #768390;
1105
+ }
1106
+ [theme=github-dark-dimmed] .hljs-name, [theme=github-dark-dimmed] .hljs-quote, [theme=github-dark-dimmed] .hljs-selector-pseudo, [theme=github-dark-dimmed] .hljs-selector-tag {
1107
+ color: #8ddb8c;
1108
+ }
1109
+ [theme=github-dark-dimmed] .hljs-subst {
1110
+ color: #adbac7;
1111
+ }
1112
+ [theme=github-dark-dimmed] .hljs-section {
1113
+ color: #316dca;
1114
+ font-weight: 700;
1115
+ }
1116
+ [theme=github-dark-dimmed] .hljs-bullet {
1117
+ color: #eac55f;
1118
+ }
1119
+ [theme=github-dark-dimmed] .hljs-emphasis {
1120
+ color: #adbac7;
1121
+ font-style: italic;
1122
+ }
1123
+ [theme=github-dark-dimmed] .hljs-strong {
1124
+ color: #adbac7;
1125
+ font-weight: 700;
1126
+ }
1127
+ [theme=github-dark-dimmed] .hljs-addition {
1128
+ color: #b4f1b4;
1129
+ background-color: #1b4721;
1130
+ }
1131
+ [theme=github-dark-dimmed] .hljs-deletion {
1132
+ color: #ffd8d3;
1133
+ background-color: #78191b;
1134
+ }
1135
+
1136
+ [theme=github-dark] {
1137
+ /*!
1138
+ Theme: GitHub Dark
1139
+ Description: Dark theme as seen on github.com
1140
+ Author: github.com
1141
+ Maintainer: @Hirse
1142
+ Updated: 2021-05-15
1143
+
1144
+ Outdated base version: https://github.com/primer/github-syntax-dark
1145
+ Current colors taken from GitHub's CSS
1146
+ */
1147
+ }
1148
+ [theme=github-dark] pre code.hljs {
1149
+ display: block;
1150
+ overflow-x: auto;
1151
+ padding: 1em;
1152
+ }
1153
+ [theme=github-dark] code.hljs {
1154
+ padding: 3px 5px;
1155
+ }
1156
+ [theme=github-dark] .hljs {
1157
+ color: #c9d1d9;
1158
+ background: #0d1117;
1159
+ }
1160
+ [theme=github-dark] .hljs-doctag, [theme=github-dark] .hljs-keyword, [theme=github-dark] .hljs-meta .hljs-keyword, [theme=github-dark] .hljs-template-tag, [theme=github-dark] .hljs-template-variable, [theme=github-dark] .hljs-type, [theme=github-dark] .hljs-variable.language_ {
1161
+ color: #ff7b72;
1162
+ }
1163
+ [theme=github-dark] .hljs-title, [theme=github-dark] .hljs-title.class_, [theme=github-dark] .hljs-title.class_.inherited__, [theme=github-dark] .hljs-title.function_ {
1164
+ color: #d2a8ff;
1165
+ }
1166
+ [theme=github-dark] .hljs-attr, [theme=github-dark] .hljs-attribute, [theme=github-dark] .hljs-literal, [theme=github-dark] .hljs-meta, [theme=github-dark] .hljs-number, [theme=github-dark] .hljs-operator, [theme=github-dark] .hljs-selector-attr, [theme=github-dark] .hljs-selector-class, [theme=github-dark] .hljs-selector-id, [theme=github-dark] .hljs-variable {
1167
+ color: #79c0ff;
1168
+ }
1169
+ [theme=github-dark] .hljs-meta .hljs-string, [theme=github-dark] .hljs-regexp, [theme=github-dark] .hljs-string {
1170
+ color: #a5d6ff;
1171
+ }
1172
+ [theme=github-dark] .hljs-built_in, [theme=github-dark] .hljs-symbol {
1173
+ color: #ffa657;
1174
+ }
1175
+ [theme=github-dark] .hljs-code, [theme=github-dark] .hljs-comment, [theme=github-dark] .hljs-formula {
1176
+ color: #8b949e;
1177
+ }
1178
+ [theme=github-dark] .hljs-name, [theme=github-dark] .hljs-quote, [theme=github-dark] .hljs-selector-pseudo, [theme=github-dark] .hljs-selector-tag {
1179
+ color: #7ee787;
1180
+ }
1181
+ [theme=github-dark] .hljs-subst {
1182
+ color: #c9d1d9;
1183
+ }
1184
+ [theme=github-dark] .hljs-section {
1185
+ color: #1f6feb;
1186
+ font-weight: 700;
1187
+ }
1188
+ [theme=github-dark] .hljs-bullet {
1189
+ color: #f2cc60;
1190
+ }
1191
+ [theme=github-dark] .hljs-emphasis {
1192
+ color: #c9d1d9;
1193
+ font-style: italic;
1194
+ }
1195
+ [theme=github-dark] .hljs-strong {
1196
+ color: #c9d1d9;
1197
+ font-weight: 700;
1198
+ }
1199
+ [theme=github-dark] .hljs-addition {
1200
+ color: #aff5b4;
1201
+ background-color: #033a16;
1202
+ }
1203
+ [theme=github-dark] .hljs-deletion {
1204
+ color: #ffdcd7;
1205
+ background-color: #67060c;
1206
+ }
1207
+
1208
+ [theme=github] {
1209
+ /*!
1210
+ Theme: GitHub
1211
+ Description: Light theme as seen on github.com
1212
+ Author: github.com
1213
+ Maintainer: @Hirse
1214
+ Updated: 2021-05-15
1215
+
1216
+ Outdated base version: https://github.com/primer/github-syntax-light
1217
+ Current colors taken from GitHub's CSS
1218
+ */
1219
+ }
1220
+ [theme=github] pre code.hljs {
1221
+ display: block;
1222
+ overflow-x: auto;
1223
+ padding: 1em;
1224
+ }
1225
+ [theme=github] code.hljs {
1226
+ padding: 3px 5px;
1227
+ }
1228
+ [theme=github] .hljs {
1229
+ color: #24292e;
1230
+ background: #fff;
1231
+ }
1232
+ [theme=github] .hljs-doctag, [theme=github] .hljs-keyword, [theme=github] .hljs-meta .hljs-keyword, [theme=github] .hljs-template-tag, [theme=github] .hljs-template-variable, [theme=github] .hljs-type, [theme=github] .hljs-variable.language_ {
1233
+ color: #d73a49;
1234
+ }
1235
+ [theme=github] .hljs-title, [theme=github] .hljs-title.class_, [theme=github] .hljs-title.class_.inherited__, [theme=github] .hljs-title.function_ {
1236
+ color: #6f42c1;
1237
+ }
1238
+ [theme=github] .hljs-attr, [theme=github] .hljs-attribute, [theme=github] .hljs-literal, [theme=github] .hljs-meta, [theme=github] .hljs-number, [theme=github] .hljs-operator, [theme=github] .hljs-selector-attr, [theme=github] .hljs-selector-class, [theme=github] .hljs-selector-id, [theme=github] .hljs-variable {
1239
+ color: #005cc5;
1240
+ }
1241
+ [theme=github] .hljs-meta .hljs-string, [theme=github] .hljs-regexp, [theme=github] .hljs-string {
1242
+ color: #032f62;
1243
+ }
1244
+ [theme=github] .hljs-built_in, [theme=github] .hljs-symbol {
1245
+ color: #e36209;
1246
+ }
1247
+ [theme=github] .hljs-code, [theme=github] .hljs-comment, [theme=github] .hljs-formula {
1248
+ color: #6a737d;
1249
+ }
1250
+ [theme=github] .hljs-name, [theme=github] .hljs-quote, [theme=github] .hljs-selector-pseudo, [theme=github] .hljs-selector-tag {
1251
+ color: #22863a;
1252
+ }
1253
+ [theme=github] .hljs-subst {
1254
+ color: #24292e;
1255
+ }
1256
+ [theme=github] .hljs-section {
1257
+ color: #005cc5;
1258
+ font-weight: 700;
1259
+ }
1260
+ [theme=github] .hljs-bullet {
1261
+ color: #735c0f;
1262
+ }
1263
+ [theme=github] .hljs-emphasis {
1264
+ color: #24292e;
1265
+ font-style: italic;
1266
+ }
1267
+ [theme=github] .hljs-strong {
1268
+ color: #24292e;
1269
+ font-weight: 700;
1270
+ }
1271
+ [theme=github] .hljs-addition {
1272
+ color: #22863a;
1273
+ background-color: #f0fff4;
1274
+ }
1275
+ [theme=github] .hljs-deletion {
1276
+ color: #b31d28;
1277
+ background-color: #ffeef0;
1278
+ }
1279
+
1280
+ [theme=gml] pre code.hljs {
1281
+ display: block;
1282
+ overflow-x: auto;
1283
+ padding: 1em;
1284
+ }
1285
+ [theme=gml] code.hljs {
1286
+ padding: 3px 5px;
1287
+ }
1288
+ [theme=gml] .hljs {
1289
+ background: #222;
1290
+ color: silver;
1291
+ }
1292
+ [theme=gml] .hljs-keyword {
1293
+ color: #ffb871;
1294
+ font-weight: 700;
1295
+ }
1296
+ [theme=gml] .hljs-built_in {
1297
+ color: #ffb871;
1298
+ }
1299
+ [theme=gml] .hljs-literal {
1300
+ color: #ff8080;
1301
+ }
1302
+ [theme=gml] .hljs-symbol {
1303
+ color: #58e55a;
1304
+ }
1305
+ [theme=gml] .hljs-comment {
1306
+ color: #5b995b;
1307
+ }
1308
+ [theme=gml] .hljs-string {
1309
+ color: #ff0;
1310
+ }
1311
+ [theme=gml] .hljs-number {
1312
+ color: #ff8080;
1313
+ }
1314
+ [theme=gml] .hljs-addition, [theme=gml] .hljs-attribute, [theme=gml] .hljs-bullet, [theme=gml] .hljs-code, [theme=gml] .hljs-deletion, [theme=gml] .hljs-doctag, [theme=gml] .hljs-function, [theme=gml] .hljs-link, [theme=gml] .hljs-meta, [theme=gml] .hljs-meta .hljs-keyword, [theme=gml] .hljs-name, [theme=gml] .hljs-quote, [theme=gml] .hljs-regexp, [theme=gml] .hljs-section, [theme=gml] .hljs-selector-attr, [theme=gml] .hljs-selector-class, [theme=gml] .hljs-selector-id, [theme=gml] .hljs-selector-pseudo, [theme=gml] .hljs-selector-tag, [theme=gml] .hljs-subst, [theme=gml] .hljs-template-tag, [theme=gml] .hljs-template-variable, [theme=gml] .hljs-title, [theme=gml] .hljs-type, [theme=gml] .hljs-variable {
1315
+ color: silver;
1316
+ }
1317
+ [theme=gml] .hljs-emphasis {
1318
+ font-style: italic;
1319
+ }
1320
+ [theme=gml] .hljs-strong {
1321
+ font-weight: 700;
1322
+ }
1323
+
1324
+ [theme=googlecode] pre code.hljs {
1325
+ display: block;
1326
+ overflow-x: auto;
1327
+ padding: 1em;
1328
+ }
1329
+ [theme=googlecode] code.hljs {
1330
+ padding: 3px 5px;
1331
+ }
1332
+ [theme=googlecode] .hljs {
1333
+ background: #fff;
1334
+ color: #000;
1335
+ }
1336
+ [theme=googlecode] .hljs-comment, [theme=googlecode] .hljs-quote {
1337
+ color: #800;
1338
+ }
1339
+ [theme=googlecode] .hljs-keyword, [theme=googlecode] .hljs-name, [theme=googlecode] .hljs-section, [theme=googlecode] .hljs-selector-tag, [theme=googlecode] .hljs-title {
1340
+ color: #008;
1341
+ }
1342
+ [theme=googlecode] .hljs-template-variable, [theme=googlecode] .hljs-variable {
1343
+ color: #660;
1344
+ }
1345
+ [theme=googlecode] .hljs-regexp, [theme=googlecode] .hljs-selector-attr, [theme=googlecode] .hljs-selector-pseudo, [theme=googlecode] .hljs-string {
1346
+ color: #080;
1347
+ }
1348
+ [theme=googlecode] .hljs-bullet, [theme=googlecode] .hljs-link, [theme=googlecode] .hljs-literal, [theme=googlecode] .hljs-meta, [theme=googlecode] .hljs-number, [theme=googlecode] .hljs-symbol {
1349
+ color: #066;
1350
+ }
1351
+ [theme=googlecode] .hljs-attr, [theme=googlecode] .hljs-built_in, [theme=googlecode] .hljs-doctag, [theme=googlecode] .hljs-params, [theme=googlecode] .hljs-title, [theme=googlecode] .hljs-type {
1352
+ color: #606;
1353
+ }
1354
+ [theme=googlecode] .hljs-attribute, [theme=googlecode] .hljs-subst {
1355
+ color: #000;
1356
+ }
1357
+ [theme=googlecode] .hljs-formula {
1358
+ background-color: #eee;
1359
+ font-style: italic;
1360
+ }
1361
+ [theme=googlecode] .hljs-selector-class, [theme=googlecode] .hljs-selector-id {
1362
+ color: #9b703f;
1363
+ }
1364
+ [theme=googlecode] .hljs-addition {
1365
+ background-color: #baeeba;
1366
+ }
1367
+ [theme=googlecode] .hljs-deletion {
1368
+ background-color: #ffc8bd;
1369
+ }
1370
+ [theme=googlecode] .hljs-doctag, [theme=googlecode] .hljs-strong {
1371
+ font-weight: 700;
1372
+ }
1373
+ [theme=googlecode] .hljs-emphasis {
1374
+ font-style: italic;
1375
+ }
1376
+
1377
+ [theme=gradient-dark] pre code.hljs {
1378
+ display: block;
1379
+ overflow-x: auto;
1380
+ padding: 1em;
1381
+ }
1382
+ [theme=gradient-dark] code.hljs {
1383
+ padding: 3px 5px;
1384
+ }
1385
+ [theme=gradient-dark] .hljs {
1386
+ background-color: #652487;
1387
+ background-image: linear-gradient(160deg, #652487 0, #443ac3 35%, #0174b7 68%, #04988e 100%);
1388
+ color: #e7e4eb;
1389
+ }
1390
+ [theme=gradient-dark] .hljs-subtr {
1391
+ color: #e7e4eb;
1392
+ }
1393
+ [theme=gradient-dark] .hljs-comment, [theme=gradient-dark] .hljs-doctag, [theme=gradient-dark] .hljs-meta, [theme=gradient-dark] .hljs-quote {
1394
+ color: #af8dd9;
1395
+ }
1396
+ [theme=gradient-dark] .hljs-attr, [theme=gradient-dark] .hljs-regexp, [theme=gradient-dark] .hljs-selector-id, [theme=gradient-dark] .hljs-selector-tag, [theme=gradient-dark] .hljs-tag, [theme=gradient-dark] .hljs-template-tag {
1397
+ color: #aefbff;
1398
+ }
1399
+ [theme=gradient-dark] .hljs-bullet, [theme=gradient-dark] .hljs-params, [theme=gradient-dark] .hljs-selector-class {
1400
+ color: #f19fff;
1401
+ }
1402
+ [theme=gradient-dark] .hljs-keyword, [theme=gradient-dark] .hljs-meta .hljs-keyword, [theme=gradient-dark] .hljs-section, [theme=gradient-dark] .hljs-symbol, [theme=gradient-dark] .hljs-type {
1403
+ color: #17fc95;
1404
+ }
1405
+ [theme=gradient-dark] .hljs-addition, [theme=gradient-dark] .hljs-link, [theme=gradient-dark] .hljs-number {
1406
+ color: #c5fe00;
1407
+ }
1408
+ [theme=gradient-dark] .hljs-string {
1409
+ color: #38c0ff;
1410
+ }
1411
+ [theme=gradient-dark] .hljs-addition, [theme=gradient-dark] .hljs-attribute {
1412
+ color: #e7ff9f;
1413
+ }
1414
+ [theme=gradient-dark] .hljs-template-variable, [theme=gradient-dark] .hljs-variable {
1415
+ color: #e447ff;
1416
+ }
1417
+ [theme=gradient-dark] .hljs-built_in, [theme=gradient-dark] .hljs-class, [theme=gradient-dark] .hljs-formula, [theme=gradient-dark] .hljs-function, [theme=gradient-dark] .hljs-name, [theme=gradient-dark] .hljs-title {
1418
+ color: #ffc800;
1419
+ }
1420
+ [theme=gradient-dark] .hljs-deletion, [theme=gradient-dark] .hljs-literal, [theme=gradient-dark] .hljs-selector-pseudo {
1421
+ color: #ff9e44;
1422
+ }
1423
+ [theme=gradient-dark] .hljs-emphasis, [theme=gradient-dark] .hljs-quote {
1424
+ font-style: italic;
1425
+ }
1426
+ [theme=gradient-dark] .hljs-keyword, [theme=gradient-dark] .hljs-params, [theme=gradient-dark] .hljs-section, [theme=gradient-dark] .hljs-selector-class, [theme=gradient-dark] .hljs-selector-id, [theme=gradient-dark] .hljs-selector-tag, [theme=gradient-dark] .hljs-strong, [theme=gradient-dark] .hljs-template-tag {
1427
+ font-weight: 700;
1428
+ }
1429
+
1430
+ [theme=gradient-light] pre code.hljs {
1431
+ display: block;
1432
+ overflow-x: auto;
1433
+ padding: 1em;
1434
+ }
1435
+ [theme=gradient-light] code.hljs {
1436
+ padding: 3px 5px;
1437
+ }
1438
+ [theme=gradient-light] .hljs {
1439
+ background-color: #f9ccff;
1440
+ background-image: linear-gradient(295deg, #f9ccff 0, #e6bbf9 11%, #9ec6f9 32%, #55e6ee 60%, #91f5d1 74%, #f9ffbf 98%);
1441
+ color: #250482;
1442
+ }
1443
+ [theme=gradient-light] .hljs-subtr {
1444
+ color: #01958b;
1445
+ }
1446
+ [theme=gradient-light] .hljs-comment, [theme=gradient-light] .hljs-doctag, [theme=gradient-light] .hljs-meta, [theme=gradient-light] .hljs-quote {
1447
+ color: #cb7200;
1448
+ }
1449
+ [theme=gradient-light] .hljs-attr, [theme=gradient-light] .hljs-regexp, [theme=gradient-light] .hljs-selector-id, [theme=gradient-light] .hljs-selector-tag, [theme=gradient-light] .hljs-tag, [theme=gradient-light] .hljs-template-tag {
1450
+ color: #07bd5f;
1451
+ }
1452
+ [theme=gradient-light] .hljs-bullet, [theme=gradient-light] .hljs-params, [theme=gradient-light] .hljs-selector-class {
1453
+ color: #43449f;
1454
+ }
1455
+ [theme=gradient-light] .hljs-keyword, [theme=gradient-light] .hljs-meta .hljs-keyword, [theme=gradient-light] .hljs-section, [theme=gradient-light] .hljs-symbol, [theme=gradient-light] .hljs-type {
1456
+ color: #7d2801;
1457
+ }
1458
+ [theme=gradient-light] .hljs-addition, [theme=gradient-light] .hljs-link, [theme=gradient-light] .hljs-number {
1459
+ color: #7f0096;
1460
+ }
1461
+ [theme=gradient-light] .hljs-string {
1462
+ color: #2681ab;
1463
+ }
1464
+ [theme=gradient-light] .hljs-addition, [theme=gradient-light] .hljs-attribute {
1465
+ color: #296562;
1466
+ }
1467
+ [theme=gradient-light] .hljs-template-variable, [theme=gradient-light] .hljs-variable {
1468
+ color: #025c8f;
1469
+ }
1470
+ [theme=gradient-light] .hljs-built_in, [theme=gradient-light] .hljs-class, [theme=gradient-light] .hljs-formula, [theme=gradient-light] .hljs-function, [theme=gradient-light] .hljs-name, [theme=gradient-light] .hljs-title {
1471
+ color: #529117;
1472
+ }
1473
+ [theme=gradient-light] .hljs-deletion, [theme=gradient-light] .hljs-literal, [theme=gradient-light] .hljs-selector-pseudo {
1474
+ color: #ad13ff;
1475
+ }
1476
+ [theme=gradient-light] .hljs-emphasis, [theme=gradient-light] .hljs-quote {
1477
+ font-style: italic;
1478
+ }
1479
+ [theme=gradient-light] .hljs-keyword, [theme=gradient-light] .hljs-params, [theme=gradient-light] .hljs-section, [theme=gradient-light] .hljs-selector-class, [theme=gradient-light] .hljs-selector-id, [theme=gradient-light] .hljs-selector-tag, [theme=gradient-light] .hljs-strong, [theme=gradient-light] .hljs-template-tag {
1480
+ font-weight: 700;
1481
+ }
1482
+
1483
+ [theme=grayscale] pre code.hljs {
1484
+ display: block;
1485
+ overflow-x: auto;
1486
+ padding: 1em;
1487
+ }
1488
+ [theme=grayscale] code.hljs {
1489
+ padding: 3px 5px;
1490
+ }
1491
+ [theme=grayscale] .hljs {
1492
+ color: #333;
1493
+ background: #fff;
1494
+ }
1495
+ [theme=grayscale] .hljs-comment, [theme=grayscale] .hljs-quote {
1496
+ color: #777;
1497
+ font-style: italic;
1498
+ }
1499
+ [theme=grayscale] .hljs-keyword, [theme=grayscale] .hljs-selector-tag, [theme=grayscale] .hljs-subst {
1500
+ color: #333;
1501
+ font-weight: 700;
1502
+ }
1503
+ [theme=grayscale] .hljs-literal, [theme=grayscale] .hljs-number {
1504
+ color: #777;
1505
+ }
1506
+ [theme=grayscale] .hljs-doctag, [theme=grayscale] .hljs-formula, [theme=grayscale] .hljs-string {
1507
+ color: #333;
1508
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJ0lEQVQIW2O8e/fufwYGBgZBQUEQxcCIIfDu3Tuwivfv30NUoAsAALHpFMMLqZlPAAAAAElFTkSuQmCC);
1509
+ }
1510
+ [theme=grayscale] .hljs-section, [theme=grayscale] .hljs-selector-id, [theme=grayscale] .hljs-title {
1511
+ color: #000;
1512
+ font-weight: 700;
1513
+ }
1514
+ [theme=grayscale] .hljs-subst {
1515
+ font-weight: 400;
1516
+ }
1517
+ [theme=grayscale] .hljs-class .hljs-title, [theme=grayscale] .hljs-name, [theme=grayscale] .hljs-title.class_, [theme=grayscale] .hljs-type {
1518
+ color: #333;
1519
+ font-weight: 700;
1520
+ }
1521
+ [theme=grayscale] .hljs-tag {
1522
+ color: #333;
1523
+ }
1524
+ [theme=grayscale] .hljs-regexp {
1525
+ color: #333;
1526
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAPUlEQVQYV2NkQAN37979r6yszIgujiIAU4RNMVwhuiQ6H6wQl3XI4oy4FMHcCJPHcDS6J2A2EqUQpJhohQDexSef15DBCwAAAABJRU5ErkJggg==);
1527
+ }
1528
+ [theme=grayscale] .hljs-bullet, [theme=grayscale] .hljs-link, [theme=grayscale] .hljs-symbol {
1529
+ color: #000;
1530
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQIW2NkQAO7d+/+z4gsBhJwdXVlhAvCBECKwIIwAbhKZBUwBQA6hBpm5efZsgAAAABJRU5ErkJggg==);
1531
+ }
1532
+ [theme=grayscale] .hljs-built_in {
1533
+ color: #000;
1534
+ text-decoration: underline;
1535
+ }
1536
+ [theme=grayscale] .hljs-meta {
1537
+ color: #999;
1538
+ font-weight: 700;
1539
+ }
1540
+ [theme=grayscale] .hljs-deletion {
1541
+ color: #fff;
1542
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAE0lEQVQIW2MMDQ39zzhz5kwIAQAyxweWgUHd1AAAAABJRU5ErkJggg==);
1543
+ }
1544
+ [theme=grayscale] .hljs-addition {
1545
+ color: #000;
1546
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAALUlEQVQYV2N89+7dfwYk8P79ewZBQUFkIQZGOiu6e/cuiptQHAPl0NtNxAQBAM97Oejj3Dg7AAAAAElFTkSuQmCC);
1547
+ }
1548
+ [theme=grayscale] .hljs-emphasis {
1549
+ font-style: italic;
1550
+ }
1551
+ [theme=grayscale] .hljs-strong {
1552
+ font-weight: 700;
1553
+ }
1554
+
1555
+ [theme=hybrid] pre code.hljs {
1556
+ display: block;
1557
+ overflow-x: auto;
1558
+ padding: 1em;
1559
+ }
1560
+ [theme=hybrid] code.hljs {
1561
+ padding: 3px 5px;
1562
+ }
1563
+ [theme=hybrid] .hljs {
1564
+ background: #1d1f21;
1565
+ color: #c5c8c6;
1566
+ }
1567
+ [theme=hybrid] .hljs span::selection, [theme=hybrid] .hljs::selection {
1568
+ background: #373b41;
1569
+ }
1570
+ [theme=hybrid] .hljs span::-moz-selection, [theme=hybrid] .hljs::-moz-selection {
1571
+ background: #373b41;
1572
+ }
1573
+ [theme=hybrid] .hljs-name, [theme=hybrid] .hljs-title {
1574
+ color: #f0c674;
1575
+ }
1576
+ [theme=hybrid] .hljs-comment, [theme=hybrid] .hljs-meta, [theme=hybrid] .hljs-meta .hljs-keyword {
1577
+ color: #707880;
1578
+ }
1579
+ [theme=hybrid] .hljs-deletion, [theme=hybrid] .hljs-link, [theme=hybrid] .hljs-literal, [theme=hybrid] .hljs-number, [theme=hybrid] .hljs-symbol {
1580
+ color: #c66;
1581
+ }
1582
+ [theme=hybrid] .hljs-addition, [theme=hybrid] .hljs-doctag, [theme=hybrid] .hljs-regexp, [theme=hybrid] .hljs-selector-attr, [theme=hybrid] .hljs-selector-pseudo, [theme=hybrid] .hljs-string {
1583
+ color: #b5bd68;
1584
+ }
1585
+ [theme=hybrid] .hljs-attribute, [theme=hybrid] .hljs-code, [theme=hybrid] .hljs-selector-id {
1586
+ color: #b294bb;
1587
+ }
1588
+ [theme=hybrid] .hljs-bullet, [theme=hybrid] .hljs-keyword, [theme=hybrid] .hljs-selector-tag, [theme=hybrid] .hljs-tag {
1589
+ color: #81a2be;
1590
+ }
1591
+ [theme=hybrid] .hljs-subst, [theme=hybrid] .hljs-template-tag, [theme=hybrid] .hljs-template-variable, [theme=hybrid] .hljs-variable {
1592
+ color: #8abeb7;
1593
+ }
1594
+ [theme=hybrid] .hljs-built_in, [theme=hybrid] .hljs-quote, [theme=hybrid] .hljs-section, [theme=hybrid] .hljs-selector-class, [theme=hybrid] .hljs-type {
1595
+ color: #de935f;
1596
+ }
1597
+ [theme=hybrid] .hljs-emphasis {
1598
+ font-style: italic;
1599
+ }
1600
+ [theme=hybrid] .hljs-strong {
1601
+ font-weight: 700;
1602
+ }
1603
+
1604
+ [theme=idea] pre code.hljs {
1605
+ display: block;
1606
+ overflow-x: auto;
1607
+ padding: 1em;
1608
+ }
1609
+ [theme=idea] code.hljs {
1610
+ padding: 3px 5px;
1611
+ }
1612
+ [theme=idea] .hljs {
1613
+ color: #000;
1614
+ background: #fff;
1615
+ }
1616
+ [theme=idea] .hljs-subst, [theme=idea] .hljs-title {
1617
+ font-weight: 400;
1618
+ color: #000;
1619
+ }
1620
+ [theme=idea] .hljs-comment, [theme=idea] .hljs-quote {
1621
+ color: grey;
1622
+ font-style: italic;
1623
+ }
1624
+ [theme=idea] .hljs-meta {
1625
+ color: olive;
1626
+ }
1627
+ [theme=idea] .hljs-tag {
1628
+ background: #efefef;
1629
+ }
1630
+ [theme=idea] .hljs-keyword, [theme=idea] .hljs-literal, [theme=idea] .hljs-name, [theme=idea] .hljs-section, [theme=idea] .hljs-selector-class, [theme=idea] .hljs-selector-id, [theme=idea] .hljs-selector-tag, [theme=idea] .hljs-type {
1631
+ font-weight: 700;
1632
+ color: navy;
1633
+ }
1634
+ [theme=idea] .hljs-attribute, [theme=idea] .hljs-link, [theme=idea] .hljs-number, [theme=idea] .hljs-regexp {
1635
+ font-weight: 700;
1636
+ color: #00f;
1637
+ }
1638
+ [theme=idea] .hljs-link, [theme=idea] .hljs-number, [theme=idea] .hljs-regexp {
1639
+ font-weight: 400;
1640
+ }
1641
+ [theme=idea] .hljs-string {
1642
+ color: green;
1643
+ font-weight: 700;
1644
+ }
1645
+ [theme=idea] .hljs-bullet, [theme=idea] .hljs-formula, [theme=idea] .hljs-symbol {
1646
+ color: #000;
1647
+ background: #d0eded;
1648
+ font-style: italic;
1649
+ }
1650
+ [theme=idea] .hljs-doctag {
1651
+ text-decoration: underline;
1652
+ }
1653
+ [theme=idea] .hljs-template-variable, [theme=idea] .hljs-variable {
1654
+ color: #660e7a;
1655
+ }
1656
+ [theme=idea] .hljs-addition {
1657
+ background: #baeeba;
1658
+ }
1659
+ [theme=idea] .hljs-deletion {
1660
+ background: #ffc8bd;
1661
+ }
1662
+ [theme=idea] .hljs-emphasis {
1663
+ font-style: italic;
1664
+ }
1665
+ [theme=idea] .hljs-strong {
1666
+ font-weight: 700;
1667
+ }
1668
+
1669
+ [theme=intellij-light] pre code.hljs {
1670
+ display: block;
1671
+ overflow-x: auto;
1672
+ padding: 1em;
1673
+ }
1674
+ [theme=intellij-light] code.hljs {
1675
+ padding: 3px 5px;
1676
+ }
1677
+ [theme=intellij-light] .hljs {
1678
+ color: #000;
1679
+ background: #fff;
1680
+ }
1681
+ [theme=intellij-light] .hljs-subst, [theme=intellij-light] .hljs-title {
1682
+ font-weight: 400;
1683
+ color: #000;
1684
+ }
1685
+ [theme=intellij-light] .hljs-title.function_ {
1686
+ color: #7a7a43;
1687
+ }
1688
+ [theme=intellij-light] .hljs-code, [theme=intellij-light] .hljs-comment, [theme=intellij-light] .hljs-quote {
1689
+ color: #8c8c8c;
1690
+ font-style: italic;
1691
+ }
1692
+ [theme=intellij-light] .hljs-meta {
1693
+ color: #9e880d;
1694
+ }
1695
+ [theme=intellij-light] .hljs-section {
1696
+ color: #871094;
1697
+ }
1698
+ [theme=intellij-light] .hljs-built_in, [theme=intellij-light] .hljs-keyword, [theme=intellij-light] .hljs-literal, [theme=intellij-light] .hljs-meta .hljs-keyword, [theme=intellij-light] .hljs-name, [theme=intellij-light] .hljs-selector-attr, [theme=intellij-light] .hljs-selector-class, [theme=intellij-light] .hljs-selector-id, [theme=intellij-light] .hljs-selector-pseudo, [theme=intellij-light] .hljs-selector-tag, [theme=intellij-light] .hljs-symbol, [theme=intellij-light] .hljs-template-tag, [theme=intellij-light] .hljs-type, [theme=intellij-light] .hljs-variable.language_ {
1699
+ color: #0033b3;
1700
+ }
1701
+ [theme=intellij-light] .hljs-attr, [theme=intellij-light] .hljs-property {
1702
+ color: #871094;
1703
+ }
1704
+ [theme=intellij-light] .hljs-attribute {
1705
+ color: #174ad4;
1706
+ }
1707
+ [theme=intellij-light] .hljs-number {
1708
+ color: #1750eb;
1709
+ }
1710
+ [theme=intellij-light] .hljs-regexp {
1711
+ color: #264eff;
1712
+ }
1713
+ [theme=intellij-light] .hljs-link {
1714
+ text-decoration: underline;
1715
+ color: #006dcc;
1716
+ }
1717
+ [theme=intellij-light] .hljs-meta .hljs-string, [theme=intellij-light] .hljs-string {
1718
+ color: #067d17;
1719
+ }
1720
+ [theme=intellij-light] .hljs-char.escape_ {
1721
+ color: #0037a6;
1722
+ }
1723
+ [theme=intellij-light] .hljs-doctag {
1724
+ text-decoration: underline;
1725
+ }
1726
+ [theme=intellij-light] .hljs-template-variable {
1727
+ color: #248f8f;
1728
+ }
1729
+ [theme=intellij-light] .hljs-addition {
1730
+ background: #bee6be;
1731
+ }
1732
+ [theme=intellij-light] .hljs-deletion {
1733
+ background: #d6d6d6;
1734
+ }
1735
+ [theme=intellij-light] .hljs-emphasis {
1736
+ font-style: italic;
1737
+ }
1738
+ [theme=intellij-light] .hljs-strong {
1739
+ font-weight: 700;
1740
+ }
1741
+
1742
+ [theme=ir-black] pre code.hljs {
1743
+ display: block;
1744
+ overflow-x: auto;
1745
+ padding: 1em;
1746
+ }
1747
+ [theme=ir-black] code.hljs {
1748
+ padding: 3px 5px;
1749
+ }
1750
+ [theme=ir-black] .hljs {
1751
+ background: #000;
1752
+ color: #f8f8f8;
1753
+ }
1754
+ [theme=ir-black] .hljs-comment, [theme=ir-black] .hljs-meta, [theme=ir-black] .hljs-quote {
1755
+ color: #7c7c7c;
1756
+ }
1757
+ [theme=ir-black] .hljs-keyword, [theme=ir-black] .hljs-name, [theme=ir-black] .hljs-selector-tag, [theme=ir-black] .hljs-tag {
1758
+ color: #96cbfe;
1759
+ }
1760
+ [theme=ir-black] .hljs-attribute, [theme=ir-black] .hljs-selector-id {
1761
+ color: #ffffb6;
1762
+ }
1763
+ [theme=ir-black] .hljs-addition, [theme=ir-black] .hljs-selector-attr, [theme=ir-black] .hljs-selector-pseudo, [theme=ir-black] .hljs-string {
1764
+ color: #a8ff60;
1765
+ }
1766
+ [theme=ir-black] .hljs-subst {
1767
+ color: #daefa3;
1768
+ }
1769
+ [theme=ir-black] .hljs-link, [theme=ir-black] .hljs-regexp {
1770
+ color: #e9c062;
1771
+ }
1772
+ [theme=ir-black] .hljs-doctag, [theme=ir-black] .hljs-section, [theme=ir-black] .hljs-title, [theme=ir-black] .hljs-type {
1773
+ color: #ffffb6;
1774
+ }
1775
+ [theme=ir-black] .hljs-bullet, [theme=ir-black] .hljs-literal, [theme=ir-black] .hljs-symbol, [theme=ir-black] .hljs-template-variable, [theme=ir-black] .hljs-variable {
1776
+ color: #c6c5fe;
1777
+ }
1778
+ [theme=ir-black] .hljs-deletion, [theme=ir-black] .hljs-number {
1779
+ color: #ff73fd;
1780
+ }
1781
+ [theme=ir-black] .hljs-emphasis {
1782
+ font-style: italic;
1783
+ }
1784
+ [theme=ir-black] .hljs-strong {
1785
+ font-weight: 700;
1786
+ }
1787
+
1788
+ [theme=isbl-editor-dark] pre code.hljs {
1789
+ display: block;
1790
+ overflow-x: auto;
1791
+ padding: 1em;
1792
+ }
1793
+ [theme=isbl-editor-dark] code.hljs {
1794
+ padding: 3px 5px;
1795
+ }
1796
+ [theme=isbl-editor-dark] .hljs {
1797
+ background: #404040;
1798
+ }
1799
+ [theme=isbl-editor-dark] .hljs, [theme=isbl-editor-dark] .hljs-subst {
1800
+ color: #f0f0f0;
1801
+ }
1802
+ [theme=isbl-editor-dark] .hljs-comment {
1803
+ color: #b5b5b5;
1804
+ font-style: italic;
1805
+ }
1806
+ [theme=isbl-editor-dark] .hljs-attribute, [theme=isbl-editor-dark] .hljs-doctag, [theme=isbl-editor-dark] .hljs-keyword, [theme=isbl-editor-dark] .hljs-meta .hljs-keyword, [theme=isbl-editor-dark] .hljs-name, [theme=isbl-editor-dark] .hljs-selector-tag {
1807
+ color: #f0f0f0;
1808
+ font-weight: 700;
1809
+ }
1810
+ [theme=isbl-editor-dark] .hljs-string {
1811
+ color: #97bf0d;
1812
+ }
1813
+ [theme=isbl-editor-dark] .hljs-deletion, [theme=isbl-editor-dark] .hljs-number, [theme=isbl-editor-dark] .hljs-quote, [theme=isbl-editor-dark] .hljs-selector-class, [theme=isbl-editor-dark] .hljs-selector-id, [theme=isbl-editor-dark] .hljs-template-tag, [theme=isbl-editor-dark] .hljs-type {
1814
+ color: #f0f0f0;
1815
+ }
1816
+ [theme=isbl-editor-dark] .hljs-link, [theme=isbl-editor-dark] .hljs-regexp, [theme=isbl-editor-dark] .hljs-selector-attr, [theme=isbl-editor-dark] .hljs-selector-pseudo, [theme=isbl-editor-dark] .hljs-symbol, [theme=isbl-editor-dark] .hljs-template-variable, [theme=isbl-editor-dark] .hljs-variable {
1817
+ color: #e2c696;
1818
+ }
1819
+ [theme=isbl-editor-dark] .hljs-built_in, [theme=isbl-editor-dark] .hljs-literal {
1820
+ color: #97bf0d;
1821
+ font-weight: 700;
1822
+ }
1823
+ [theme=isbl-editor-dark] .hljs-addition, [theme=isbl-editor-dark] .hljs-bullet, [theme=isbl-editor-dark] .hljs-code {
1824
+ color: #397300;
1825
+ }
1826
+ [theme=isbl-editor-dark] .hljs-class {
1827
+ color: #ce9d4d;
1828
+ font-weight: 700;
1829
+ }
1830
+ [theme=isbl-editor-dark] .hljs-section, [theme=isbl-editor-dark] .hljs-title {
1831
+ color: #df471e;
1832
+ }
1833
+ [theme=isbl-editor-dark] .hljs-title > .hljs-built_in {
1834
+ color: #81bce9;
1835
+ font-weight: 400;
1836
+ }
1837
+ [theme=isbl-editor-dark] .hljs-meta {
1838
+ color: #1f7199;
1839
+ }
1840
+ [theme=isbl-editor-dark] .hljs-meta .hljs-string {
1841
+ color: #4d99bf;
1842
+ }
1843
+ [theme=isbl-editor-dark] .hljs-emphasis {
1844
+ font-style: italic;
1845
+ }
1846
+ [theme=isbl-editor-dark] .hljs-strong {
1847
+ font-weight: 700;
1848
+ }
1849
+
1850
+ [theme=isbl-editor-light] pre code.hljs {
1851
+ display: block;
1852
+ overflow-x: auto;
1853
+ padding: 1em;
1854
+ }
1855
+ [theme=isbl-editor-light] code.hljs {
1856
+ padding: 3px 5px;
1857
+ }
1858
+ [theme=isbl-editor-light] .hljs {
1859
+ background: #fff;
1860
+ color: #000;
1861
+ }
1862
+ [theme=isbl-editor-light] .hljs-subst {
1863
+ color: #000;
1864
+ }
1865
+ [theme=isbl-editor-light] .hljs-comment {
1866
+ color: #555;
1867
+ font-style: italic;
1868
+ }
1869
+ [theme=isbl-editor-light] .hljs-attribute, [theme=isbl-editor-light] .hljs-doctag, [theme=isbl-editor-light] .hljs-keyword, [theme=isbl-editor-light] .hljs-meta .hljs-keyword, [theme=isbl-editor-light] .hljs-name, [theme=isbl-editor-light] .hljs-selector-tag {
1870
+ color: #000;
1871
+ font-weight: 700;
1872
+ }
1873
+ [theme=isbl-editor-light] .hljs-string {
1874
+ color: navy;
1875
+ }
1876
+ [theme=isbl-editor-light] .hljs-deletion, [theme=isbl-editor-light] .hljs-number, [theme=isbl-editor-light] .hljs-quote, [theme=isbl-editor-light] .hljs-selector-class, [theme=isbl-editor-light] .hljs-selector-id, [theme=isbl-editor-light] .hljs-template-tag, [theme=isbl-editor-light] .hljs-type {
1877
+ color: #000;
1878
+ }
1879
+ [theme=isbl-editor-light] .hljs-link, [theme=isbl-editor-light] .hljs-regexp, [theme=isbl-editor-light] .hljs-selector-attr, [theme=isbl-editor-light] .hljs-selector-pseudo, [theme=isbl-editor-light] .hljs-symbol, [theme=isbl-editor-light] .hljs-template-variable, [theme=isbl-editor-light] .hljs-variable {
1880
+ color: #5e1700;
1881
+ }
1882
+ [theme=isbl-editor-light] .hljs-built_in, [theme=isbl-editor-light] .hljs-literal {
1883
+ color: navy;
1884
+ font-weight: 700;
1885
+ }
1886
+ [theme=isbl-editor-light] .hljs-addition, [theme=isbl-editor-light] .hljs-bullet, [theme=isbl-editor-light] .hljs-code {
1887
+ color: #397300;
1888
+ }
1889
+ [theme=isbl-editor-light] .hljs-class {
1890
+ color: #6f1c00;
1891
+ font-weight: 700;
1892
+ }
1893
+ [theme=isbl-editor-light] .hljs-section, [theme=isbl-editor-light] .hljs-title {
1894
+ color: #fb2c00;
1895
+ }
1896
+ [theme=isbl-editor-light] .hljs-title > .hljs-built_in {
1897
+ color: teal;
1898
+ font-weight: 400;
1899
+ }
1900
+ [theme=isbl-editor-light] .hljs-meta {
1901
+ color: #1f7199;
1902
+ }
1903
+ [theme=isbl-editor-light] .hljs-meta .hljs-string {
1904
+ color: #4d99bf;
1905
+ }
1906
+ [theme=isbl-editor-light] .hljs-emphasis {
1907
+ font-style: italic;
1908
+ }
1909
+ [theme=isbl-editor-light] .hljs-strong {
1910
+ font-weight: 700;
1911
+ }
1912
+
1913
+ [theme=kimbie-dark] pre code.hljs {
1914
+ display: block;
1915
+ overflow-x: auto;
1916
+ padding: 1em;
1917
+ }
1918
+ [theme=kimbie-dark] code.hljs {
1919
+ padding: 3px 5px;
1920
+ }
1921
+ [theme=kimbie-dark] .hljs {
1922
+ background: #221a0f;
1923
+ color: #d3af86;
1924
+ }
1925
+ [theme=kimbie-dark] .hljs-comment, [theme=kimbie-dark] .hljs-quote {
1926
+ color: #d6baad;
1927
+ }
1928
+ [theme=kimbie-dark] .hljs-meta, [theme=kimbie-dark] .hljs-name, [theme=kimbie-dark] .hljs-regexp, [theme=kimbie-dark] .hljs-selector-class, [theme=kimbie-dark] .hljs-selector-id, [theme=kimbie-dark] .hljs-tag, [theme=kimbie-dark] .hljs-template-variable, [theme=kimbie-dark] .hljs-variable {
1929
+ color: #dc3958;
1930
+ }
1931
+ [theme=kimbie-dark] .hljs-built_in, [theme=kimbie-dark] .hljs-deletion, [theme=kimbie-dark] .hljs-link, [theme=kimbie-dark] .hljs-literal, [theme=kimbie-dark] .hljs-number, [theme=kimbie-dark] .hljs-params, [theme=kimbie-dark] .hljs-type {
1932
+ color: #f79a32;
1933
+ }
1934
+ [theme=kimbie-dark] .hljs-addition, [theme=kimbie-dark] .hljs-bullet, [theme=kimbie-dark] .hljs-string, [theme=kimbie-dark] .hljs-symbol {
1935
+ color: #889b4a;
1936
+ }
1937
+ [theme=kimbie-dark] .hljs-function, [theme=kimbie-dark] .hljs-keyword, [theme=kimbie-dark] .hljs-selector-tag {
1938
+ color: #98676a;
1939
+ }
1940
+ [theme=kimbie-dark] .hljs-attribute, [theme=kimbie-dark] .hljs-section, [theme=kimbie-dark] .hljs-title {
1941
+ color: #f06431;
1942
+ }
1943
+ [theme=kimbie-dark] .hljs-emphasis {
1944
+ font-style: italic;
1945
+ }
1946
+ [theme=kimbie-dark] .hljs-strong {
1947
+ font-weight: 700;
1948
+ }
1949
+
1950
+ [theme=kimbie-light] pre code.hljs {
1951
+ display: block;
1952
+ overflow-x: auto;
1953
+ padding: 1em;
1954
+ }
1955
+ [theme=kimbie-light] code.hljs {
1956
+ padding: 3px 5px;
1957
+ }
1958
+ [theme=kimbie-light] .hljs {
1959
+ background: #fbebd4;
1960
+ color: #84613d;
1961
+ }
1962
+ [theme=kimbie-light] .hljs-comment, [theme=kimbie-light] .hljs-quote {
1963
+ color: #a57a4c;
1964
+ }
1965
+ [theme=kimbie-light] .hljs-meta, [theme=kimbie-light] .hljs-name, [theme=kimbie-light] .hljs-regexp, [theme=kimbie-light] .hljs-selector-class, [theme=kimbie-light] .hljs-selector-id, [theme=kimbie-light] .hljs-tag, [theme=kimbie-light] .hljs-template-variable, [theme=kimbie-light] .hljs-variable {
1966
+ color: #dc3958;
1967
+ }
1968
+ [theme=kimbie-light] .hljs-built_in, [theme=kimbie-light] .hljs-deletion, [theme=kimbie-light] .hljs-link, [theme=kimbie-light] .hljs-literal, [theme=kimbie-light] .hljs-number, [theme=kimbie-light] .hljs-params, [theme=kimbie-light] .hljs-type {
1969
+ color: #f79a32;
1970
+ }
1971
+ [theme=kimbie-light] .hljs-addition, [theme=kimbie-light] .hljs-bullet, [theme=kimbie-light] .hljs-string, [theme=kimbie-light] .hljs-symbol {
1972
+ color: #889b4a;
1973
+ }
1974
+ [theme=kimbie-light] .hljs-function, [theme=kimbie-light] .hljs-keyword, [theme=kimbie-light] .hljs-selector-tag {
1975
+ color: #98676a;
1976
+ }
1977
+ [theme=kimbie-light] .hljs-attribute, [theme=kimbie-light] .hljs-section, [theme=kimbie-light] .hljs-title {
1978
+ color: #f06431;
1979
+ }
1980
+ [theme=kimbie-light] .hljs-emphasis {
1981
+ font-style: italic;
1982
+ }
1983
+ [theme=kimbie-light] .hljs-strong {
1984
+ font-weight: 700;
1985
+ }
1986
+
1987
+ [theme=lightfair] pre code.hljs {
1988
+ display: block;
1989
+ overflow-x: auto;
1990
+ padding: 1em;
1991
+ }
1992
+ [theme=lightfair] code.hljs {
1993
+ padding: 3px 5px;
1994
+ }
1995
+ [theme=lightfair] .hljs {
1996
+ color: #444;
1997
+ background: #fff;
1998
+ }
1999
+ [theme=lightfair] .hljs-name {
2000
+ color: #01a3a3;
2001
+ }
2002
+ [theme=lightfair] .hljs-meta, [theme=lightfair] .hljs-tag {
2003
+ color: #789;
2004
+ }
2005
+ [theme=lightfair] .hljs-comment {
2006
+ color: #888;
2007
+ }
2008
+ [theme=lightfair] .hljs-attribute, [theme=lightfair] .hljs-doctag, [theme=lightfair] .hljs-keyword, [theme=lightfair] .hljs-meta .hljs-keyword, [theme=lightfair] .hljs-name, [theme=lightfair] .hljs-selector-tag {
2009
+ font-weight: 700;
2010
+ }
2011
+ [theme=lightfair] .hljs-deletion, [theme=lightfair] .hljs-number, [theme=lightfair] .hljs-quote, [theme=lightfair] .hljs-selector-class, [theme=lightfair] .hljs-selector-id, [theme=lightfair] .hljs-string, [theme=lightfair] .hljs-template-tag, [theme=lightfair] .hljs-type {
2012
+ color: #4286f4;
2013
+ }
2014
+ [theme=lightfair] .hljs-section, [theme=lightfair] .hljs-title {
2015
+ color: #4286f4;
2016
+ font-weight: 700;
2017
+ }
2018
+ [theme=lightfair] .hljs-link, [theme=lightfair] .hljs-regexp, [theme=lightfair] .hljs-selector-attr, [theme=lightfair] .hljs-selector-pseudo, [theme=lightfair] .hljs-symbol, [theme=lightfair] .hljs-template-variable, [theme=lightfair] .hljs-variable {
2019
+ color: #bc6060;
2020
+ }
2021
+ [theme=lightfair] .hljs-literal {
2022
+ color: #62bcbc;
2023
+ }
2024
+ [theme=lightfair] .hljs-addition, [theme=lightfair] .hljs-built_in, [theme=lightfair] .hljs-bullet, [theme=lightfair] .hljs-code {
2025
+ color: #25c6c6;
2026
+ }
2027
+ [theme=lightfair] .hljs-meta .hljs-string {
2028
+ color: #4d99bf;
2029
+ }
2030
+ [theme=lightfair] .hljs-emphasis {
2031
+ font-style: italic;
2032
+ }
2033
+ [theme=lightfair] .hljs-strong {
2034
+ font-weight: 700;
2035
+ }
2036
+
2037
+ [theme=lioshi] pre code.hljs {
2038
+ display: block;
2039
+ overflow-x: auto;
2040
+ padding: 1em;
2041
+ }
2042
+ [theme=lioshi] code.hljs {
2043
+ padding: 3px 5px;
2044
+ }
2045
+ [theme=lioshi] .hljs {
2046
+ background: #303030;
2047
+ color: #c5c8c6;
2048
+ }
2049
+ [theme=lioshi] .hljs-comment {
2050
+ color: #8d8d8d;
2051
+ }
2052
+ [theme=lioshi] .hljs-quote {
2053
+ color: #b3c7d8;
2054
+ }
2055
+ [theme=lioshi] .hljs-deletion, [theme=lioshi] .hljs-name, [theme=lioshi] .hljs-regexp, [theme=lioshi] .hljs-selector-class, [theme=lioshi] .hljs-selector-id, [theme=lioshi] .hljs-tag, [theme=lioshi] .hljs-template-variable, [theme=lioshi] .hljs-variable {
2056
+ color: #c66;
2057
+ }
2058
+ [theme=lioshi] .hljs-built_in, [theme=lioshi] .hljs-literal, [theme=lioshi] .hljs-number, [theme=lioshi] .hljs-subst .hljs-link, [theme=lioshi] .hljs-type {
2059
+ color: #de935f;
2060
+ }
2061
+ [theme=lioshi] .hljs-attribute {
2062
+ color: #f0c674;
2063
+ }
2064
+ [theme=lioshi] .hljs-addition, [theme=lioshi] .hljs-bullet, [theme=lioshi] .hljs-params, [theme=lioshi] .hljs-string {
2065
+ color: #b5bd68;
2066
+ }
2067
+ [theme=lioshi] .hljs-class, [theme=lioshi] .hljs-function, [theme=lioshi] .hljs-keyword, [theme=lioshi] .hljs-selector-tag {
2068
+ color: #be94bb;
2069
+ }
2070
+ [theme=lioshi] .hljs-meta, [theme=lioshi] .hljs-section, [theme=lioshi] .hljs-title {
2071
+ color: #81a2be;
2072
+ }
2073
+ [theme=lioshi] .hljs-symbol {
2074
+ color: #dbc4d9;
2075
+ }
2076
+ [theme=lioshi] .hljs-emphasis {
2077
+ font-style: italic;
2078
+ }
2079
+ [theme=lioshi] .hljs-strong {
2080
+ font-weight: 700;
2081
+ }
2082
+
2083
+ [theme=magula] pre code.hljs {
2084
+ display: block;
2085
+ overflow-x: auto;
2086
+ padding: 1em;
2087
+ }
2088
+ [theme=magula] code.hljs {
2089
+ padding: 3px 5px;
2090
+ }
2091
+ [theme=magula] .hljs {
2092
+ background-color: #f4f4f4;
2093
+ color: #000;
2094
+ }
2095
+ [theme=magula] .hljs-subst {
2096
+ color: #000;
2097
+ }
2098
+ [theme=magula] .hljs-addition, [theme=magula] .hljs-attribute, [theme=magula] .hljs-bullet, [theme=magula] .hljs-string, [theme=magula] .hljs-symbol, [theme=magula] .hljs-template-tag, [theme=magula] .hljs-template-variable, [theme=magula] .hljs-title, [theme=magula] .hljs-variable {
2099
+ color: #050;
2100
+ }
2101
+ [theme=magula] .hljs-comment, [theme=magula] .hljs-quote {
2102
+ color: #777;
2103
+ }
2104
+ [theme=magula] .hljs-link, [theme=magula] .hljs-literal, [theme=magula] .hljs-number, [theme=magula] .hljs-regexp, [theme=magula] .hljs-type {
2105
+ color: #800;
2106
+ }
2107
+ [theme=magula] .hljs-deletion, [theme=magula] .hljs-meta {
2108
+ color: #00e;
2109
+ }
2110
+ [theme=magula] .hljs-built_in, [theme=magula] .hljs-doctag, [theme=magula] .hljs-keyword, [theme=magula] .hljs-name, [theme=magula] .hljs-section, [theme=magula] .hljs-selector-tag, [theme=magula] .hljs-tag, [theme=magula] .hljs-title {
2111
+ font-weight: 700;
2112
+ color: navy;
2113
+ }
2114
+ [theme=magula] .hljs-emphasis {
2115
+ font-style: italic;
2116
+ }
2117
+ [theme=magula] .hljs-strong {
2118
+ font-weight: 700;
2119
+ }
2120
+
2121
+ [theme=mono-blue] pre code.hljs {
2122
+ display: block;
2123
+ overflow-x: auto;
2124
+ padding: 1em;
2125
+ }
2126
+ [theme=mono-blue] code.hljs {
2127
+ padding: 3px 5px;
2128
+ }
2129
+ [theme=mono-blue] .hljs {
2130
+ background: #eaeef3;
2131
+ color: #00193a;
2132
+ }
2133
+ [theme=mono-blue] .hljs-doctag, [theme=mono-blue] .hljs-keyword, [theme=mono-blue] .hljs-name, [theme=mono-blue] .hljs-section, [theme=mono-blue] .hljs-selector-tag, [theme=mono-blue] .hljs-strong, [theme=mono-blue] .hljs-title {
2134
+ font-weight: 700;
2135
+ }
2136
+ [theme=mono-blue] .hljs-comment {
2137
+ color: #738191;
2138
+ }
2139
+ [theme=mono-blue] .hljs-addition, [theme=mono-blue] .hljs-built_in, [theme=mono-blue] .hljs-literal, [theme=mono-blue] .hljs-name, [theme=mono-blue] .hljs-quote, [theme=mono-blue] .hljs-section, [theme=mono-blue] .hljs-selector-class, [theme=mono-blue] .hljs-selector-id, [theme=mono-blue] .hljs-string, [theme=mono-blue] .hljs-tag, [theme=mono-blue] .hljs-title, [theme=mono-blue] .hljs-type {
2140
+ color: #0048ab;
2141
+ }
2142
+ [theme=mono-blue] .hljs-attribute, [theme=mono-blue] .hljs-bullet, [theme=mono-blue] .hljs-deletion, [theme=mono-blue] .hljs-link, [theme=mono-blue] .hljs-meta, [theme=mono-blue] .hljs-regexp, [theme=mono-blue] .hljs-subst, [theme=mono-blue] .hljs-symbol, [theme=mono-blue] .hljs-template-variable, [theme=mono-blue] .hljs-variable {
2143
+ color: #4c81c9;
2144
+ }
2145
+ [theme=mono-blue] .hljs-emphasis {
2146
+ font-style: italic;
2147
+ }
2148
+
2149
+ [theme=monokai-sublime] pre code.hljs {
2150
+ display: block;
2151
+ overflow-x: auto;
2152
+ padding: 1em;
2153
+ }
2154
+ [theme=monokai-sublime] code.hljs {
2155
+ padding: 3px 5px;
2156
+ }
2157
+ [theme=monokai-sublime] .hljs {
2158
+ background: #23241f;
2159
+ color: #f8f8f2;
2160
+ }
2161
+ [theme=monokai-sublime] .hljs-subst, [theme=monokai-sublime] .hljs-tag {
2162
+ color: #f8f8f2;
2163
+ }
2164
+ [theme=monokai-sublime] .hljs-emphasis, [theme=monokai-sublime] .hljs-strong {
2165
+ color: #a8a8a2;
2166
+ }
2167
+ [theme=monokai-sublime] .hljs-bullet, [theme=monokai-sublime] .hljs-link, [theme=monokai-sublime] .hljs-literal, [theme=monokai-sublime] .hljs-number, [theme=monokai-sublime] .hljs-quote, [theme=monokai-sublime] .hljs-regexp {
2168
+ color: #ae81ff;
2169
+ }
2170
+ [theme=monokai-sublime] .hljs-code, [theme=monokai-sublime] .hljs-section, [theme=monokai-sublime] .hljs-selector-class, [theme=monokai-sublime] .hljs-title {
2171
+ color: #a6e22e;
2172
+ }
2173
+ [theme=monokai-sublime] .hljs-strong {
2174
+ font-weight: 700;
2175
+ }
2176
+ [theme=monokai-sublime] .hljs-emphasis {
2177
+ font-style: italic;
2178
+ }
2179
+ [theme=monokai-sublime] .hljs-attr, [theme=monokai-sublime] .hljs-keyword, [theme=monokai-sublime] .hljs-name, [theme=monokai-sublime] .hljs-selector-tag {
2180
+ color: #f92672;
2181
+ }
2182
+ [theme=monokai-sublime] .hljs-attribute, [theme=monokai-sublime] .hljs-symbol {
2183
+ color: #66d9ef;
2184
+ }
2185
+ [theme=monokai-sublime] .hljs-class .hljs-title, [theme=monokai-sublime] .hljs-params, [theme=monokai-sublime] .hljs-title.class_ {
2186
+ color: #f8f8f2;
2187
+ }
2188
+ [theme=monokai-sublime] .hljs-addition, [theme=monokai-sublime] .hljs-built_in, [theme=monokai-sublime] .hljs-selector-attr, [theme=monokai-sublime] .hljs-selector-id, [theme=monokai-sublime] .hljs-selector-pseudo, [theme=monokai-sublime] .hljs-string, [theme=monokai-sublime] .hljs-template-variable, [theme=monokai-sublime] .hljs-type, [theme=monokai-sublime] .hljs-variable {
2189
+ color: #e6db74;
2190
+ }
2191
+ [theme=monokai-sublime] .hljs-comment, [theme=monokai-sublime] .hljs-deletion, [theme=monokai-sublime] .hljs-meta {
2192
+ color: #75715e;
2193
+ }
2194
+
2195
+ [theme=monokai] pre code.hljs {
2196
+ display: block;
2197
+ overflow-x: auto;
2198
+ padding: 1em;
2199
+ }
2200
+ [theme=monokai] code.hljs {
2201
+ padding: 3px 5px;
2202
+ }
2203
+ [theme=monokai] .hljs {
2204
+ background: #272822;
2205
+ color: #ddd;
2206
+ }
2207
+ [theme=monokai] .hljs-keyword, [theme=monokai] .hljs-literal, [theme=monokai] .hljs-name, [theme=monokai] .hljs-selector-tag, [theme=monokai] .hljs-strong, [theme=monokai] .hljs-tag {
2208
+ color: #f92672;
2209
+ }
2210
+ [theme=monokai] .hljs-code {
2211
+ color: #66d9ef;
2212
+ }
2213
+ [theme=monokai] .hljs-attribute, [theme=monokai] .hljs-link, [theme=monokai] .hljs-regexp, [theme=monokai] .hljs-symbol {
2214
+ color: #bf79db;
2215
+ }
2216
+ [theme=monokai] .hljs-addition, [theme=monokai] .hljs-built_in, [theme=monokai] .hljs-bullet, [theme=monokai] .hljs-emphasis, [theme=monokai] .hljs-section, [theme=monokai] .hljs-selector-attr, [theme=monokai] .hljs-selector-pseudo, [theme=monokai] .hljs-string, [theme=monokai] .hljs-subst, [theme=monokai] .hljs-template-tag, [theme=monokai] .hljs-template-variable, [theme=monokai] .hljs-title, [theme=monokai] .hljs-type, [theme=monokai] .hljs-variable {
2217
+ color: #a6e22e;
2218
+ }
2219
+ [theme=monokai] .hljs-class .hljs-title, [theme=monokai] .hljs-title.class_ {
2220
+ color: #fff;
2221
+ }
2222
+ [theme=monokai] .hljs-comment, [theme=monokai] .hljs-deletion, [theme=monokai] .hljs-meta, [theme=monokai] .hljs-quote {
2223
+ color: #75715e;
2224
+ }
2225
+ [theme=monokai] .hljs-doctag, [theme=monokai] .hljs-keyword, [theme=monokai] .hljs-literal, [theme=monokai] .hljs-section, [theme=monokai] .hljs-selector-id, [theme=monokai] .hljs-selector-tag, [theme=monokai] .hljs-title, [theme=monokai] .hljs-type {
2226
+ font-weight: 700;
2227
+ }
2228
+
2229
+ [theme=night-owl] pre code.hljs {
2230
+ display: block;
2231
+ overflow-x: auto;
2232
+ padding: 1em;
2233
+ }
2234
+ [theme=night-owl] code.hljs {
2235
+ padding: 3px 5px;
2236
+ }
2237
+ [theme=night-owl] .hljs {
2238
+ background: #011627;
2239
+ color: #d6deeb;
2240
+ }
2241
+ [theme=night-owl] .hljs-keyword {
2242
+ color: #c792ea;
2243
+ font-style: italic;
2244
+ }
2245
+ [theme=night-owl] .hljs-built_in {
2246
+ color: #addb67;
2247
+ font-style: italic;
2248
+ }
2249
+ [theme=night-owl] .hljs-type {
2250
+ color: #82aaff;
2251
+ }
2252
+ [theme=night-owl] .hljs-literal {
2253
+ color: #ff5874;
2254
+ }
2255
+ [theme=night-owl] .hljs-number {
2256
+ color: #f78c6c;
2257
+ }
2258
+ [theme=night-owl] .hljs-regexp {
2259
+ color: #5ca7e4;
2260
+ }
2261
+ [theme=night-owl] .hljs-string {
2262
+ color: #ecc48d;
2263
+ }
2264
+ [theme=night-owl] .hljs-subst {
2265
+ color: #d3423e;
2266
+ }
2267
+ [theme=night-owl] .hljs-symbol {
2268
+ color: #82aaff;
2269
+ }
2270
+ [theme=night-owl] .hljs-class {
2271
+ color: #ffcb8b;
2272
+ }
2273
+ [theme=night-owl] .hljs-function {
2274
+ color: #82aaff;
2275
+ }
2276
+ [theme=night-owl] .hljs-title {
2277
+ color: #dcdcaa;
2278
+ font-style: italic;
2279
+ }
2280
+ [theme=night-owl] .hljs-params {
2281
+ color: #7fdbca;
2282
+ }
2283
+ [theme=night-owl] .hljs-comment {
2284
+ color: #637777;
2285
+ font-style: italic;
2286
+ }
2287
+ [theme=night-owl] .hljs-doctag {
2288
+ color: #7fdbca;
2289
+ }
2290
+ [theme=night-owl] .hljs-meta, [theme=night-owl] .hljs-meta .hljs-keyword {
2291
+ color: #82aaff;
2292
+ }
2293
+ [theme=night-owl] .hljs-meta .hljs-string {
2294
+ color: #ecc48d;
2295
+ }
2296
+ [theme=night-owl] .hljs-section {
2297
+ color: #82b1ff;
2298
+ }
2299
+ [theme=night-owl] .hljs-attr, [theme=night-owl] .hljs-name, [theme=night-owl] .hljs-tag {
2300
+ color: #7fdbca;
2301
+ }
2302
+ [theme=night-owl] .hljs-attribute {
2303
+ color: #80cbc4;
2304
+ }
2305
+ [theme=night-owl] .hljs-variable {
2306
+ color: #addb67;
2307
+ }
2308
+ [theme=night-owl] .hljs-bullet {
2309
+ color: #d9f5dd;
2310
+ }
2311
+ [theme=night-owl] .hljs-code {
2312
+ color: #80cbc4;
2313
+ }
2314
+ [theme=night-owl] .hljs-emphasis {
2315
+ color: #c792ea;
2316
+ font-style: italic;
2317
+ }
2318
+ [theme=night-owl] .hljs-strong {
2319
+ color: #addb67;
2320
+ font-weight: 700;
2321
+ }
2322
+ [theme=night-owl] .hljs-formula {
2323
+ color: #c792ea;
2324
+ }
2325
+ [theme=night-owl] .hljs-link {
2326
+ color: #ff869a;
2327
+ }
2328
+ [theme=night-owl] .hljs-quote {
2329
+ color: #697098;
2330
+ font-style: italic;
2331
+ }
2332
+ [theme=night-owl] .hljs-selector-tag {
2333
+ color: #ff6363;
2334
+ }
2335
+ [theme=night-owl] .hljs-selector-id {
2336
+ color: #fad430;
2337
+ }
2338
+ [theme=night-owl] .hljs-selector-class {
2339
+ color: #addb67;
2340
+ font-style: italic;
2341
+ }
2342
+ [theme=night-owl] .hljs-selector-attr, [theme=night-owl] .hljs-selector-pseudo {
2343
+ color: #c792ea;
2344
+ font-style: italic;
2345
+ }
2346
+ [theme=night-owl] .hljs-template-tag {
2347
+ color: #c792ea;
2348
+ }
2349
+ [theme=night-owl] .hljs-template-variable {
2350
+ color: #addb67;
2351
+ }
2352
+ [theme=night-owl] .hljs-addition {
2353
+ color: #addb67ff;
2354
+ font-style: italic;
2355
+ }
2356
+ [theme=night-owl] .hljs-deletion {
2357
+ color: #ef535090;
2358
+ font-style: italic;
2359
+ }
2360
+
2361
+ [theme=nnfx-dark] {
2362
+ /*!
2363
+ Theme: nnfx dark
2364
+ Description: a theme inspired by Netscape Navigator/Firefox
2365
+ Author: (c) 2020-2021 Jim Mason <jmason@ibinx.com>
2366
+ Maintainer: @RocketMan
2367
+ License: https://creativecommons.org/licenses/by-sa/4.0 CC BY-SA 4.0
2368
+ Updated: 2021-05-17
2369
+
2370
+ @version 1.1.0
2371
+ */
2372
+ }
2373
+ [theme=nnfx-dark] pre code.hljs {
2374
+ display: block;
2375
+ overflow-x: auto;
2376
+ padding: 1em;
2377
+ }
2378
+ [theme=nnfx-dark] code.hljs {
2379
+ padding: 3px 5px;
2380
+ }
2381
+ [theme=nnfx-dark] .hljs {
2382
+ background: #333;
2383
+ color: #fff;
2384
+ }
2385
+ [theme=nnfx-dark] .language-xml .hljs-meta, [theme=nnfx-dark] .language-xml .hljs-meta-string {
2386
+ font-weight: 700;
2387
+ font-style: italic;
2388
+ color: #69f;
2389
+ }
2390
+ [theme=nnfx-dark] .hljs-comment, [theme=nnfx-dark] .hljs-quote {
2391
+ font-style: italic;
2392
+ color: #9c6;
2393
+ }
2394
+ [theme=nnfx-dark] .hljs-built_in, [theme=nnfx-dark] .hljs-keyword, [theme=nnfx-dark] .hljs-name {
2395
+ color: #a7a;
2396
+ }
2397
+ [theme=nnfx-dark] .hljs-attr, [theme=nnfx-dark] .hljs-name {
2398
+ font-weight: 700;
2399
+ }
2400
+ [theme=nnfx-dark] .hljs-string {
2401
+ font-weight: 400;
2402
+ }
2403
+ [theme=nnfx-dark] .hljs-code, [theme=nnfx-dark] .hljs-link, [theme=nnfx-dark] .hljs-meta .hljs-string, [theme=nnfx-dark] .hljs-number, [theme=nnfx-dark] .hljs-regexp, [theme=nnfx-dark] .hljs-string {
2404
+ color: #bce;
2405
+ }
2406
+ [theme=nnfx-dark] .hljs-bullet, [theme=nnfx-dark] .hljs-symbol, [theme=nnfx-dark] .hljs-template-variable, [theme=nnfx-dark] .hljs-title, [theme=nnfx-dark] .hljs-variable {
2407
+ color: #d40;
2408
+ }
2409
+ [theme=nnfx-dark] .hljs-class .hljs-title, [theme=nnfx-dark] .hljs-title.class_, [theme=nnfx-dark] .hljs-type {
2410
+ font-weight: 700;
2411
+ color: #96c;
2412
+ }
2413
+ [theme=nnfx-dark] .hljs-attr, [theme=nnfx-dark] .hljs-function .hljs-title, [theme=nnfx-dark] .hljs-subst, [theme=nnfx-dark] .hljs-tag, [theme=nnfx-dark] .hljs-title.function_ {
2414
+ color: #fff;
2415
+ }
2416
+ [theme=nnfx-dark] .hljs-formula {
2417
+ background-color: #eee;
2418
+ font-style: italic;
2419
+ }
2420
+ [theme=nnfx-dark] .hljs-addition {
2421
+ background-color: #797;
2422
+ }
2423
+ [theme=nnfx-dark] .hljs-deletion {
2424
+ background-color: #c99;
2425
+ }
2426
+ [theme=nnfx-dark] .hljs-meta {
2427
+ color: #69f;
2428
+ }
2429
+ [theme=nnfx-dark] .hljs-section, [theme=nnfx-dark] .hljs-selector-class, [theme=nnfx-dark] .hljs-selector-id, [theme=nnfx-dark] .hljs-selector-pseudo, [theme=nnfx-dark] .hljs-selector-tag {
2430
+ font-weight: 700;
2431
+ color: #69f;
2432
+ }
2433
+ [theme=nnfx-dark] .hljs-selector-pseudo {
2434
+ font-style: italic;
2435
+ }
2436
+ [theme=nnfx-dark] .hljs-doctag, [theme=nnfx-dark] .hljs-strong {
2437
+ font-weight: 700;
2438
+ }
2439
+ [theme=nnfx-dark] .hljs-emphasis {
2440
+ font-style: italic;
2441
+ }
2442
+
2443
+ [theme=nnfx-light] {
2444
+ /*!
2445
+ Theme: nnfx light
2446
+ Description: a theme inspired by Netscape Navigator/Firefox
2447
+ Author: (c) 2020-2021 Jim Mason <jmason@ibinx.com>
2448
+ Maintainer: @RocketMan
2449
+ License: https://creativecommons.org/licenses/by-sa/4.0 CC BY-SA 4.0
2450
+ Updated: 2021-05-17
2451
+
2452
+ @version 1.1.0
2453
+ */
2454
+ }
2455
+ [theme=nnfx-light] pre code.hljs {
2456
+ display: block;
2457
+ overflow-x: auto;
2458
+ padding: 1em;
2459
+ }
2460
+ [theme=nnfx-light] code.hljs {
2461
+ padding: 3px 5px;
2462
+ }
2463
+ [theme=nnfx-light] .hljs {
2464
+ background: #fff;
2465
+ color: #000;
2466
+ }
2467
+ [theme=nnfx-light] .language-xml .hljs-meta, [theme=nnfx-light] .language-xml .hljs-meta-string {
2468
+ font-weight: 700;
2469
+ font-style: italic;
2470
+ color: #48b;
2471
+ }
2472
+ [theme=nnfx-light] .hljs-comment, [theme=nnfx-light] .hljs-quote {
2473
+ font-style: italic;
2474
+ color: #070;
2475
+ }
2476
+ [theme=nnfx-light] .hljs-built_in, [theme=nnfx-light] .hljs-keyword, [theme=nnfx-light] .hljs-name {
2477
+ color: #808;
2478
+ }
2479
+ [theme=nnfx-light] .hljs-attr, [theme=nnfx-light] .hljs-name {
2480
+ font-weight: 700;
2481
+ }
2482
+ [theme=nnfx-light] .hljs-string {
2483
+ font-weight: 400;
2484
+ }
2485
+ [theme=nnfx-light] .hljs-code, [theme=nnfx-light] .hljs-link, [theme=nnfx-light] .hljs-meta .hljs-string, [theme=nnfx-light] .hljs-number, [theme=nnfx-light] .hljs-regexp, [theme=nnfx-light] .hljs-string {
2486
+ color: #00f;
2487
+ }
2488
+ [theme=nnfx-light] .hljs-bullet, [theme=nnfx-light] .hljs-symbol, [theme=nnfx-light] .hljs-template-variable, [theme=nnfx-light] .hljs-title, [theme=nnfx-light] .hljs-variable {
2489
+ color: #f40;
2490
+ }
2491
+ [theme=nnfx-light] .hljs-class .hljs-title, [theme=nnfx-light] .hljs-title.class_, [theme=nnfx-light] .hljs-type {
2492
+ font-weight: 700;
2493
+ color: #639;
2494
+ }
2495
+ [theme=nnfx-light] .hljs-attr, [theme=nnfx-light] .hljs-function .hljs-title, [theme=nnfx-light] .hljs-subst, [theme=nnfx-light] .hljs-tag, [theme=nnfx-light] .hljs-title.function_ {
2496
+ color: #000;
2497
+ }
2498
+ [theme=nnfx-light] .hljs-formula {
2499
+ background-color: #eee;
2500
+ font-style: italic;
2501
+ }
2502
+ [theme=nnfx-light] .hljs-addition {
2503
+ background-color: #beb;
2504
+ }
2505
+ [theme=nnfx-light] .hljs-deletion {
2506
+ background-color: #fbb;
2507
+ }
2508
+ [theme=nnfx-light] .hljs-meta {
2509
+ color: #269;
2510
+ }
2511
+ [theme=nnfx-light] .hljs-section, [theme=nnfx-light] .hljs-selector-class, [theme=nnfx-light] .hljs-selector-id, [theme=nnfx-light] .hljs-selector-pseudo, [theme=nnfx-light] .hljs-selector-tag {
2512
+ font-weight: 700;
2513
+ color: #48b;
2514
+ }
2515
+ [theme=nnfx-light] .hljs-selector-pseudo {
2516
+ font-style: italic;
2517
+ }
2518
+ [theme=nnfx-light] .hljs-doctag, [theme=nnfx-light] .hljs-strong {
2519
+ font-weight: 700;
2520
+ }
2521
+ [theme=nnfx-light] .hljs-emphasis {
2522
+ font-style: italic;
2523
+ }
2524
+
2525
+ [theme=nord] pre code.hljs {
2526
+ display: block;
2527
+ overflow-x: auto;
2528
+ padding: 1em;
2529
+ }
2530
+ [theme=nord] code.hljs {
2531
+ padding: 3px 5px;
2532
+ }
2533
+ [theme=nord] .hljs {
2534
+ background: #2e3440;
2535
+ }
2536
+ [theme=nord] .hljs, [theme=nord] .hljs-subst {
2537
+ color: #d8dee9;
2538
+ }
2539
+ [theme=nord] .hljs-selector-tag {
2540
+ color: #81a1c1;
2541
+ }
2542
+ [theme=nord] .hljs-selector-id {
2543
+ color: #8fbcbb;
2544
+ font-weight: 700;
2545
+ }
2546
+ [theme=nord] .hljs-selector-attr, [theme=nord] .hljs-selector-class {
2547
+ color: #8fbcbb;
2548
+ }
2549
+ [theme=nord] .hljs-property, [theme=nord] .hljs-selector-pseudo {
2550
+ color: #88c0d0;
2551
+ }
2552
+ [theme=nord] .hljs-addition {
2553
+ background-color: rgba(163, 190, 140, 0.5);
2554
+ }
2555
+ [theme=nord] .hljs-deletion {
2556
+ background-color: rgba(191, 97, 106, 0.5);
2557
+ }
2558
+ [theme=nord] .hljs-built_in, [theme=nord] .hljs-class, [theme=nord] .hljs-type {
2559
+ color: #8fbcbb;
2560
+ }
2561
+ [theme=nord] .hljs-function, [theme=nord] .hljs-function > .hljs-title, [theme=nord] .hljs-title.hljs-function {
2562
+ color: #88c0d0;
2563
+ }
2564
+ [theme=nord] .hljs-keyword, [theme=nord] .hljs-literal, [theme=nord] .hljs-symbol {
2565
+ color: #81a1c1;
2566
+ }
2567
+ [theme=nord] .hljs-number {
2568
+ color: #b48ead;
2569
+ }
2570
+ [theme=nord] .hljs-regexp {
2571
+ color: #ebcb8b;
2572
+ }
2573
+ [theme=nord] .hljs-string {
2574
+ color: #a3be8c;
2575
+ }
2576
+ [theme=nord] .hljs-title {
2577
+ color: #8fbcbb;
2578
+ }
2579
+ [theme=nord] .hljs-params {
2580
+ color: #d8dee9;
2581
+ }
2582
+ [theme=nord] .hljs-bullet {
2583
+ color: #81a1c1;
2584
+ }
2585
+ [theme=nord] .hljs-code {
2586
+ color: #8fbcbb;
2587
+ }
2588
+ [theme=nord] .hljs-emphasis {
2589
+ font-style: italic;
2590
+ }
2591
+ [theme=nord] .hljs-formula {
2592
+ color: #8fbcbb;
2593
+ }
2594
+ [theme=nord] .hljs-strong {
2595
+ font-weight: 700;
2596
+ }
2597
+ [theme=nord] .hljs-link:hover {
2598
+ text-decoration: underline;
2599
+ }
2600
+ [theme=nord] .hljs-comment, [theme=nord] .hljs-quote {
2601
+ color: #4c566a;
2602
+ }
2603
+ [theme=nord] .hljs-doctag {
2604
+ color: #8fbcbb;
2605
+ }
2606
+ [theme=nord] .hljs-meta, [theme=nord] .hljs-meta .hljs-keyword {
2607
+ color: #5e81ac;
2608
+ }
2609
+ [theme=nord] .hljs-meta .hljs-string {
2610
+ color: #a3be8c;
2611
+ }
2612
+ [theme=nord] .hljs-attr {
2613
+ color: #8fbcbb;
2614
+ }
2615
+ [theme=nord] .hljs-attribute {
2616
+ color: #d8dee9;
2617
+ }
2618
+ [theme=nord] .hljs-name {
2619
+ color: #81a1c1;
2620
+ }
2621
+ [theme=nord] .hljs-section {
2622
+ color: #88c0d0;
2623
+ }
2624
+ [theme=nord] .hljs-tag {
2625
+ color: #81a1c1;
2626
+ }
2627
+ [theme=nord] .hljs-template-variable, [theme=nord] .hljs-variable {
2628
+ color: #d8dee9;
2629
+ }
2630
+ [theme=nord] .hljs-template-tag {
2631
+ color: #5e81ac;
2632
+ }
2633
+ [theme=nord] .language-abnf .hljs-attribute {
2634
+ color: #88c0d0;
2635
+ }
2636
+ [theme=nord] .language-abnf .hljs-symbol {
2637
+ color: #ebcb8b;
2638
+ }
2639
+ [theme=nord] .language-apache .hljs-attribute {
2640
+ color: #88c0d0;
2641
+ }
2642
+ [theme=nord] .language-apache .hljs-section {
2643
+ color: #81a1c1;
2644
+ }
2645
+ [theme=nord] .language-arduino .hljs-built_in {
2646
+ color: #88c0d0;
2647
+ }
2648
+ [theme=nord] .language-aspectj .hljs-meta {
2649
+ color: #d08770;
2650
+ }
2651
+ [theme=nord] .language-aspectj > .hljs-title {
2652
+ color: #88c0d0;
2653
+ }
2654
+ [theme=nord] .language-bnf .hljs-attribute {
2655
+ color: #8fbcbb;
2656
+ }
2657
+ [theme=nord] .language-clojure .hljs-name {
2658
+ color: #88c0d0;
2659
+ }
2660
+ [theme=nord] .language-clojure .hljs-symbol {
2661
+ color: #ebcb8b;
2662
+ }
2663
+ [theme=nord] .language-coq .hljs-built_in {
2664
+ color: #88c0d0;
2665
+ }
2666
+ [theme=nord] .language-cpp .hljs-meta .hljs-string {
2667
+ color: #8fbcbb;
2668
+ }
2669
+ [theme=nord] .language-css .hljs-built_in {
2670
+ color: #88c0d0;
2671
+ }
2672
+ [theme=nord] .language-css .hljs-keyword {
2673
+ color: #d08770;
2674
+ }
2675
+ [theme=nord] .language-diff .hljs-meta, [theme=nord] .language-ebnf .hljs-attribute {
2676
+ color: #8fbcbb;
2677
+ }
2678
+ [theme=nord] .language-glsl .hljs-built_in {
2679
+ color: #88c0d0;
2680
+ }
2681
+ [theme=nord] .language-groovy .hljs-meta:not(:first-child), [theme=nord] .language-haxe .hljs-meta, [theme=nord] .language-java .hljs-meta {
2682
+ color: #d08770;
2683
+ }
2684
+ [theme=nord] .language-ldif .hljs-attribute {
2685
+ color: #8fbcbb;
2686
+ }
2687
+ [theme=nord] .language-lisp .hljs-name, [theme=nord] .language-lua .hljs-built_in, [theme=nord] .language-moonscript .hljs-built_in, [theme=nord] .language-nginx .hljs-attribute {
2688
+ color: #88c0d0;
2689
+ }
2690
+ [theme=nord] .language-nginx .hljs-section {
2691
+ color: #5e81ac;
2692
+ }
2693
+ [theme=nord] .language-pf .hljs-built_in, [theme=nord] .language-processing .hljs-built_in {
2694
+ color: #88c0d0;
2695
+ }
2696
+ [theme=nord] .language-scss .hljs-keyword, [theme=nord] .language-stylus .hljs-keyword {
2697
+ color: #81a1c1;
2698
+ }
2699
+ [theme=nord] .language-swift .hljs-meta {
2700
+ color: #d08770;
2701
+ }
2702
+ [theme=nord] .language-vim .hljs-built_in {
2703
+ color: #88c0d0;
2704
+ font-style: italic;
2705
+ }
2706
+ [theme=nord] .language-yaml .hljs-meta {
2707
+ color: #d08770;
2708
+ }
2709
+
2710
+ [theme=obsidian] pre code.hljs {
2711
+ display: block;
2712
+ overflow-x: auto;
2713
+ padding: 1em;
2714
+ }
2715
+ [theme=obsidian] code.hljs {
2716
+ padding: 3px 5px;
2717
+ }
2718
+ [theme=obsidian] .hljs {
2719
+ color: #e0e2e4;
2720
+ background: #282b2e;
2721
+ }
2722
+ [theme=obsidian] .hljs-keyword, [theme=obsidian] .hljs-literal, [theme=obsidian] .hljs-selector-id, [theme=obsidian] .hljs-selector-tag {
2723
+ color: #93c763;
2724
+ }
2725
+ [theme=obsidian] .hljs-number {
2726
+ color: #ffcd22;
2727
+ }
2728
+ [theme=obsidian] .hljs-attribute {
2729
+ color: #668bb0;
2730
+ }
2731
+ [theme=obsidian] .hljs-link, [theme=obsidian] .hljs-regexp {
2732
+ color: #d39745;
2733
+ }
2734
+ [theme=obsidian] .hljs-meta {
2735
+ color: #557182;
2736
+ }
2737
+ [theme=obsidian] .hljs-addition, [theme=obsidian] .hljs-built_in, [theme=obsidian] .hljs-bullet, [theme=obsidian] .hljs-emphasis, [theme=obsidian] .hljs-name, [theme=obsidian] .hljs-selector-attr, [theme=obsidian] .hljs-selector-pseudo, [theme=obsidian] .hljs-subst, [theme=obsidian] .hljs-tag, [theme=obsidian] .hljs-template-tag, [theme=obsidian] .hljs-template-variable, [theme=obsidian] .hljs-type, [theme=obsidian] .hljs-variable {
2738
+ color: #8cbbad;
2739
+ }
2740
+ [theme=obsidian] .hljs-string, [theme=obsidian] .hljs-symbol {
2741
+ color: #ec7600;
2742
+ }
2743
+ [theme=obsidian] .hljs-comment, [theme=obsidian] .hljs-deletion, [theme=obsidian] .hljs-quote {
2744
+ color: #818e96;
2745
+ }
2746
+ [theme=obsidian] .hljs-selector-class {
2747
+ color: #a082bd;
2748
+ }
2749
+ [theme=obsidian] .hljs-doctag, [theme=obsidian] .hljs-keyword, [theme=obsidian] .hljs-literal, [theme=obsidian] .hljs-name, [theme=obsidian] .hljs-section, [theme=obsidian] .hljs-selector-tag, [theme=obsidian] .hljs-strong, [theme=obsidian] .hljs-title, [theme=obsidian] .hljs-type {
2750
+ font-weight: 700;
2751
+ }
2752
+ [theme=obsidian] .hljs-class .hljs-title, [theme=obsidian] .hljs-code, [theme=obsidian] .hljs-section, [theme=obsidian] .hljs-title.class_ {
2753
+ color: #fff;
2754
+ }
2755
+
2756
+ [theme=panda-syntax-dark] pre code.hljs {
2757
+ display: block;
2758
+ overflow-x: auto;
2759
+ padding: 1em;
2760
+ }
2761
+ [theme=panda-syntax-dark] code.hljs {
2762
+ padding: 3px 5px;
2763
+ }
2764
+ [theme=panda-syntax-dark] .hljs {
2765
+ color: #e6e6e6;
2766
+ background: #2a2c2d;
2767
+ }
2768
+ [theme=panda-syntax-dark] .hljs-emphasis {
2769
+ font-style: italic;
2770
+ }
2771
+ [theme=panda-syntax-dark] .hljs-strong {
2772
+ font-weight: 700;
2773
+ }
2774
+ [theme=panda-syntax-dark] .hljs-link {
2775
+ text-decoration: underline;
2776
+ }
2777
+ [theme=panda-syntax-dark] .hljs-comment, [theme=panda-syntax-dark] .hljs-quote {
2778
+ color: #bbb;
2779
+ font-style: italic;
2780
+ }
2781
+ [theme=panda-syntax-dark] .hljs-params {
2782
+ color: #bbb;
2783
+ }
2784
+ [theme=panda-syntax-dark] .hljs-attr, [theme=panda-syntax-dark] .hljs-punctuation {
2785
+ color: #e6e6e6;
2786
+ }
2787
+ [theme=panda-syntax-dark] .hljs-meta, [theme=panda-syntax-dark] .hljs-name, [theme=panda-syntax-dark] .hljs-selector-tag {
2788
+ color: #ff4b82;
2789
+ }
2790
+ [theme=panda-syntax-dark] .hljs-char.escape_, [theme=panda-syntax-dark] .hljs-operator {
2791
+ color: #b084eb;
2792
+ }
2793
+ [theme=panda-syntax-dark] .hljs-deletion, [theme=panda-syntax-dark] .hljs-keyword {
2794
+ color: #ff75b5;
2795
+ }
2796
+ [theme=panda-syntax-dark] .hljs-regexp, [theme=panda-syntax-dark] .hljs-selector-attr, [theme=panda-syntax-dark] .hljs-selector-pseudo, [theme=panda-syntax-dark] .hljs-variable.language_ {
2797
+ color: #ff9ac1;
2798
+ }
2799
+ [theme=panda-syntax-dark] .hljs-code, [theme=panda-syntax-dark] .hljs-formula, [theme=panda-syntax-dark] .hljs-property, [theme=panda-syntax-dark] .hljs-section, [theme=panda-syntax-dark] .hljs-subst, [theme=panda-syntax-dark] .hljs-title.function_ {
2800
+ color: #45a9f9;
2801
+ }
2802
+ [theme=panda-syntax-dark] .hljs-addition, [theme=panda-syntax-dark] .hljs-bullet, [theme=panda-syntax-dark] .hljs-meta .hljs-string, [theme=panda-syntax-dark] .hljs-selector-class, [theme=panda-syntax-dark] .hljs-string, [theme=panda-syntax-dark] .hljs-symbol, [theme=panda-syntax-dark] .hljs-title.class_, [theme=panda-syntax-dark] .hljs-title.class_.inherited__ {
2803
+ color: #19f9d8;
2804
+ }
2805
+ [theme=panda-syntax-dark] .hljs-attribute, [theme=panda-syntax-dark] .hljs-built_in, [theme=panda-syntax-dark] .hljs-doctag, [theme=panda-syntax-dark] .hljs-link, [theme=panda-syntax-dark] .hljs-literal, [theme=panda-syntax-dark] .hljs-meta .hljs-keyword, [theme=panda-syntax-dark] .hljs-number, [theme=panda-syntax-dark] .hljs-punctuation, [theme=panda-syntax-dark] .hljs-selector-id, [theme=panda-syntax-dark] .hljs-tag, [theme=panda-syntax-dark] .hljs-template-tag, [theme=panda-syntax-dark] .hljs-template-variable, [theme=panda-syntax-dark] .hljs-title, [theme=panda-syntax-dark] .hljs-type, [theme=panda-syntax-dark] .hljs-variable {
2806
+ color: #ffb86c;
2807
+ }
2808
+
2809
+ [theme=panda-syntax-light] pre code.hljs {
2810
+ display: block;
2811
+ overflow-x: auto;
2812
+ padding: 1em;
2813
+ }
2814
+ [theme=panda-syntax-light] code.hljs {
2815
+ padding: 3px 5px;
2816
+ }
2817
+ [theme=panda-syntax-light] .hljs {
2818
+ color: #2a2c2d;
2819
+ background: #e6e6e6;
2820
+ }
2821
+ [theme=panda-syntax-light] .hljs-emphasis {
2822
+ font-style: italic;
2823
+ }
2824
+ [theme=panda-syntax-light] .hljs-strong {
2825
+ font-weight: 700;
2826
+ }
2827
+ [theme=panda-syntax-light] .hljs-link {
2828
+ text-decoration: underline;
2829
+ }
2830
+ [theme=panda-syntax-light] .hljs-comment, [theme=panda-syntax-light] .hljs-quote {
2831
+ color: #676b79;
2832
+ font-style: italic;
2833
+ }
2834
+ [theme=panda-syntax-light] .hljs-params {
2835
+ color: #676b79;
2836
+ }
2837
+ [theme=panda-syntax-light] .hljs-attr, [theme=panda-syntax-light] .hljs-punctuation {
2838
+ color: #2a2c2d;
2839
+ }
2840
+ [theme=panda-syntax-light] .hljs-char.escape_, [theme=panda-syntax-light] .hljs-meta, [theme=panda-syntax-light] .hljs-name, [theme=panda-syntax-light] .hljs-operator, [theme=panda-syntax-light] .hljs-selector-tag {
2841
+ color: #c56200;
2842
+ }
2843
+ [theme=panda-syntax-light] .hljs-deletion, [theme=panda-syntax-light] .hljs-keyword {
2844
+ color: #d92792;
2845
+ }
2846
+ [theme=panda-syntax-light] .hljs-regexp, [theme=panda-syntax-light] .hljs-selector-attr, [theme=panda-syntax-light] .hljs-selector-pseudo, [theme=panda-syntax-light] .hljs-variable.language_ {
2847
+ color: #cc5e91;
2848
+ }
2849
+ [theme=panda-syntax-light] .hljs-code, [theme=panda-syntax-light] .hljs-formula, [theme=panda-syntax-light] .hljs-property, [theme=panda-syntax-light] .hljs-section, [theme=panda-syntax-light] .hljs-subst, [theme=panda-syntax-light] .hljs-title.function_ {
2850
+ color: #3787c7;
2851
+ }
2852
+ [theme=panda-syntax-light] .hljs-addition, [theme=panda-syntax-light] .hljs-bullet, [theme=panda-syntax-light] .hljs-meta .hljs-string, [theme=panda-syntax-light] .hljs-selector-class, [theme=panda-syntax-light] .hljs-string, [theme=panda-syntax-light] .hljs-symbol, [theme=panda-syntax-light] .hljs-title.class_, [theme=panda-syntax-light] .hljs-title.class_.inherited__ {
2853
+ color: #0d7d6c;
2854
+ }
2855
+ [theme=panda-syntax-light] .hljs-attribute, [theme=panda-syntax-light] .hljs-built_in, [theme=panda-syntax-light] .hljs-doctag, [theme=panda-syntax-light] .hljs-link, [theme=panda-syntax-light] .hljs-literal, [theme=panda-syntax-light] .hljs-meta .hljs-keyword, [theme=panda-syntax-light] .hljs-number, [theme=panda-syntax-light] .hljs-selector-id, [theme=panda-syntax-light] .hljs-tag, [theme=panda-syntax-light] .hljs-template-tag, [theme=panda-syntax-light] .hljs-template-variable, [theme=panda-syntax-light] .hljs-title, [theme=panda-syntax-light] .hljs-type, [theme=panda-syntax-light] .hljs-variable {
2856
+ color: #7641bb;
2857
+ }
2858
+
2859
+ [theme=paraiso-dark] pre code.hljs {
2860
+ display: block;
2861
+ overflow-x: auto;
2862
+ padding: 1em;
2863
+ }
2864
+ [theme=paraiso-dark] code.hljs {
2865
+ padding: 3px 5px;
2866
+ }
2867
+ [theme=paraiso-dark] .hljs {
2868
+ background: #2f1e2e;
2869
+ color: #a39e9b;
2870
+ }
2871
+ [theme=paraiso-dark] .hljs-comment, [theme=paraiso-dark] .hljs-quote {
2872
+ color: #8d8687;
2873
+ }
2874
+ [theme=paraiso-dark] .hljs-link, [theme=paraiso-dark] .hljs-meta, [theme=paraiso-dark] .hljs-name, [theme=paraiso-dark] .hljs-regexp, [theme=paraiso-dark] .hljs-selector-class, [theme=paraiso-dark] .hljs-selector-id, [theme=paraiso-dark] .hljs-tag, [theme=paraiso-dark] .hljs-template-variable, [theme=paraiso-dark] .hljs-variable {
2875
+ color: #ef6155;
2876
+ }
2877
+ [theme=paraiso-dark] .hljs-built_in, [theme=paraiso-dark] .hljs-deletion, [theme=paraiso-dark] .hljs-literal, [theme=paraiso-dark] .hljs-number, [theme=paraiso-dark] .hljs-params, [theme=paraiso-dark] .hljs-type {
2878
+ color: #f99b15;
2879
+ }
2880
+ [theme=paraiso-dark] .hljs-attribute, [theme=paraiso-dark] .hljs-section, [theme=paraiso-dark] .hljs-title {
2881
+ color: #fec418;
2882
+ }
2883
+ [theme=paraiso-dark] .hljs-addition, [theme=paraiso-dark] .hljs-bullet, [theme=paraiso-dark] .hljs-string, [theme=paraiso-dark] .hljs-symbol {
2884
+ color: #48b685;
2885
+ }
2886
+ [theme=paraiso-dark] .hljs-keyword, [theme=paraiso-dark] .hljs-selector-tag {
2887
+ color: #815ba4;
2888
+ }
2889
+ [theme=paraiso-dark] .hljs-emphasis {
2890
+ font-style: italic;
2891
+ }
2892
+ [theme=paraiso-dark] .hljs-strong {
2893
+ font-weight: 700;
2894
+ }
2895
+
2896
+ [theme=paraiso-light] pre code.hljs {
2897
+ display: block;
2898
+ overflow-x: auto;
2899
+ padding: 1em;
2900
+ }
2901
+ [theme=paraiso-light] code.hljs {
2902
+ padding: 3px 5px;
2903
+ }
2904
+ [theme=paraiso-light] .hljs {
2905
+ background: #e7e9db;
2906
+ color: #4f424c;
2907
+ }
2908
+ [theme=paraiso-light] .hljs-comment, [theme=paraiso-light] .hljs-quote {
2909
+ color: #776e71;
2910
+ }
2911
+ [theme=paraiso-light] .hljs-link, [theme=paraiso-light] .hljs-meta, [theme=paraiso-light] .hljs-name, [theme=paraiso-light] .hljs-regexp, [theme=paraiso-light] .hljs-selector-class, [theme=paraiso-light] .hljs-selector-id, [theme=paraiso-light] .hljs-tag, [theme=paraiso-light] .hljs-template-variable, [theme=paraiso-light] .hljs-variable {
2912
+ color: #ef6155;
2913
+ }
2914
+ [theme=paraiso-light] .hljs-built_in, [theme=paraiso-light] .hljs-deletion, [theme=paraiso-light] .hljs-literal, [theme=paraiso-light] .hljs-number, [theme=paraiso-light] .hljs-params, [theme=paraiso-light] .hljs-type {
2915
+ color: #f99b15;
2916
+ }
2917
+ [theme=paraiso-light] .hljs-attribute, [theme=paraiso-light] .hljs-section, [theme=paraiso-light] .hljs-title {
2918
+ color: #fec418;
2919
+ }
2920
+ [theme=paraiso-light] .hljs-addition, [theme=paraiso-light] .hljs-bullet, [theme=paraiso-light] .hljs-string, [theme=paraiso-light] .hljs-symbol {
2921
+ color: #48b685;
2922
+ }
2923
+ [theme=paraiso-light] .hljs-keyword, [theme=paraiso-light] .hljs-selector-tag {
2924
+ color: #815ba4;
2925
+ }
2926
+ [theme=paraiso-light] .hljs-emphasis {
2927
+ font-style: italic;
2928
+ }
2929
+ [theme=paraiso-light] .hljs-strong {
2930
+ font-weight: 700;
2931
+ }
2932
+
2933
+ [theme=pojoaque] pre code.hljs {
2934
+ display: block;
2935
+ overflow-x: auto;
2936
+ padding: 1em;
2937
+ }
2938
+ [theme=pojoaque] code.hljs {
2939
+ padding: 3px 5px;
2940
+ }
2941
+ [theme=pojoaque] .hljs {
2942
+ color: #dccf8f;
2943
+ background: #181914;
2944
+ }
2945
+ [theme=pojoaque] .hljs-comment, [theme=pojoaque] .hljs-quote {
2946
+ color: #586e75;
2947
+ font-style: italic;
2948
+ }
2949
+ [theme=pojoaque] .hljs-addition, [theme=pojoaque] .hljs-keyword, [theme=pojoaque] .hljs-literal, [theme=pojoaque] .hljs-selector-tag {
2950
+ color: #b64926;
2951
+ }
2952
+ [theme=pojoaque] .hljs-doctag, [theme=pojoaque] .hljs-number, [theme=pojoaque] .hljs-regexp, [theme=pojoaque] .hljs-string {
2953
+ color: #468966;
2954
+ }
2955
+ [theme=pojoaque] .hljs-built_in, [theme=pojoaque] .hljs-name, [theme=pojoaque] .hljs-section, [theme=pojoaque] .hljs-title {
2956
+ color: #ffb03b;
2957
+ }
2958
+ [theme=pojoaque] .hljs-class .hljs-title, [theme=pojoaque] .hljs-tag, [theme=pojoaque] .hljs-template-variable, [theme=pojoaque] .hljs-title.class_, [theme=pojoaque] .hljs-type, [theme=pojoaque] .hljs-variable {
2959
+ color: #b58900;
2960
+ }
2961
+ [theme=pojoaque] .hljs-attribute {
2962
+ color: #b89859;
2963
+ }
2964
+ [theme=pojoaque] .hljs-bullet, [theme=pojoaque] .hljs-link, [theme=pojoaque] .hljs-meta, [theme=pojoaque] .hljs-subst, [theme=pojoaque] .hljs-symbol {
2965
+ color: #cb4b16;
2966
+ }
2967
+ [theme=pojoaque] .hljs-deletion {
2968
+ color: #dc322f;
2969
+ }
2970
+ [theme=pojoaque] .hljs-selector-class, [theme=pojoaque] .hljs-selector-id {
2971
+ color: #d3a60c;
2972
+ }
2973
+ [theme=pojoaque] .hljs-formula {
2974
+ background: #073642;
2975
+ }
2976
+ [theme=pojoaque] .hljs-emphasis {
2977
+ font-style: italic;
2978
+ }
2979
+ [theme=pojoaque] .hljs-strong {
2980
+ font-weight: 700;
2981
+ }
2982
+
2983
+ [theme=purebasic] pre code.hljs {
2984
+ display: block;
2985
+ overflow-x: auto;
2986
+ padding: 1em;
2987
+ }
2988
+ [theme=purebasic] code.hljs {
2989
+ padding: 3px 5px;
2990
+ }
2991
+ [theme=purebasic] .hljs {
2992
+ background: #ffffdf;
2993
+ }
2994
+ [theme=purebasic] .hljs, [theme=purebasic] .hljs-attr, [theme=purebasic] .hljs-function, [theme=purebasic] .hljs-name, [theme=purebasic] .hljs-number, [theme=purebasic] .hljs-params, [theme=purebasic] .hljs-subst, [theme=purebasic] .hljs-type {
2995
+ color: #000;
2996
+ }
2997
+ [theme=purebasic] .hljs-addition, [theme=purebasic] .hljs-comment, [theme=purebasic] .hljs-regexp, [theme=purebasic] .hljs-section, [theme=purebasic] .hljs-selector-pseudo {
2998
+ color: #0aa;
2999
+ }
3000
+ [theme=purebasic] .hljs-built_in, [theme=purebasic] .hljs-class, [theme=purebasic] .hljs-keyword, [theme=purebasic] .hljs-meta .hljs-keyword, [theme=purebasic] .hljs-selector-class {
3001
+ color: #066;
3002
+ font-weight: 700;
3003
+ }
3004
+ [theme=purebasic] .hljs-code, [theme=purebasic] .hljs-tag, [theme=purebasic] .hljs-title, [theme=purebasic] .hljs-variable {
3005
+ color: #066;
3006
+ }
3007
+ [theme=purebasic] .hljs-selector-attr, [theme=purebasic] .hljs-string {
3008
+ color: #0080ff;
3009
+ }
3010
+ [theme=purebasic] .hljs-attribute, [theme=purebasic] .hljs-deletion, [theme=purebasic] .hljs-link, [theme=purebasic] .hljs-symbol {
3011
+ color: #924b72;
3012
+ }
3013
+ [theme=purebasic] .hljs-literal, [theme=purebasic] .hljs-meta, [theme=purebasic] .hljs-selector-id {
3014
+ color: #924b72;
3015
+ font-weight: 700;
3016
+ }
3017
+ [theme=purebasic] .hljs-name, [theme=purebasic] .hljs-strong {
3018
+ font-weight: 700;
3019
+ }
3020
+ [theme=purebasic] .hljs-emphasis {
3021
+ font-style: italic;
3022
+ }
3023
+
3024
+ [theme=qtcreator-dark] pre code.hljs {
3025
+ display: block;
3026
+ overflow-x: auto;
3027
+ padding: 1em;
3028
+ }
3029
+ [theme=qtcreator-dark] code.hljs {
3030
+ padding: 3px 5px;
3031
+ }
3032
+ [theme=qtcreator-dark] .hljs {
3033
+ color: #aaa;
3034
+ background: #000;
3035
+ }
3036
+ [theme=qtcreator-dark] .hljs-emphasis, [theme=qtcreator-dark] .hljs-strong {
3037
+ color: #a8a8a2;
3038
+ }
3039
+ [theme=qtcreator-dark] .hljs-bullet, [theme=qtcreator-dark] .hljs-literal, [theme=qtcreator-dark] .hljs-number, [theme=qtcreator-dark] .hljs-quote, [theme=qtcreator-dark] .hljs-regexp {
3040
+ color: #f5f;
3041
+ }
3042
+ [theme=qtcreator-dark] .hljs-code .hljs-selector-class {
3043
+ color: #aaf;
3044
+ }
3045
+ [theme=qtcreator-dark] .hljs-emphasis, [theme=qtcreator-dark] .hljs-stronge, [theme=qtcreator-dark] .hljs-type {
3046
+ font-style: italic;
3047
+ }
3048
+ [theme=qtcreator-dark] .hljs-function, [theme=qtcreator-dark] .hljs-keyword, [theme=qtcreator-dark] .hljs-name, [theme=qtcreator-dark] .hljs-section, [theme=qtcreator-dark] .hljs-selector-tag, [theme=qtcreator-dark] .hljs-symbol {
3049
+ color: #ff5;
3050
+ }
3051
+ [theme=qtcreator-dark] .hljs-subst, [theme=qtcreator-dark] .hljs-tag, [theme=qtcreator-dark] .hljs-title {
3052
+ color: #aaa;
3053
+ }
3054
+ [theme=qtcreator-dark] .hljs-attribute {
3055
+ color: #f55;
3056
+ }
3057
+ [theme=qtcreator-dark] .hljs-class .hljs-title, [theme=qtcreator-dark] .hljs-params, [theme=qtcreator-dark] .hljs-title.class_, [theme=qtcreator-dark] .hljs-variable {
3058
+ color: #88f;
3059
+ }
3060
+ [theme=qtcreator-dark] .hljs-addition, [theme=qtcreator-dark] .hljs-built_in, [theme=qtcreator-dark] .hljs-link, [theme=qtcreator-dark] .hljs-selector-attr, [theme=qtcreator-dark] .hljs-selector-id, [theme=qtcreator-dark] .hljs-selector-pseudo, [theme=qtcreator-dark] .hljs-string, [theme=qtcreator-dark] .hljs-template-tag, [theme=qtcreator-dark] .hljs-template-variable, [theme=qtcreator-dark] .hljs-type {
3061
+ color: #f5f;
3062
+ }
3063
+ [theme=qtcreator-dark] .hljs-comment, [theme=qtcreator-dark] .hljs-deletion, [theme=qtcreator-dark] .hljs-meta {
3064
+ color: #5ff;
3065
+ }
3066
+
3067
+ [theme=qtcreator-light] pre code.hljs {
3068
+ display: block;
3069
+ overflow-x: auto;
3070
+ padding: 1em;
3071
+ }
3072
+ [theme=qtcreator-light] code.hljs {
3073
+ padding: 3px 5px;
3074
+ }
3075
+ [theme=qtcreator-light] .hljs {
3076
+ color: #000;
3077
+ background: #fff;
3078
+ }
3079
+ [theme=qtcreator-light] .hljs-emphasis, [theme=qtcreator-light] .hljs-strong {
3080
+ color: #000;
3081
+ }
3082
+ [theme=qtcreator-light] .hljs-bullet, [theme=qtcreator-light] .hljs-literal, [theme=qtcreator-light] .hljs-number, [theme=qtcreator-light] .hljs-quote, [theme=qtcreator-light] .hljs-regexp {
3083
+ color: navy;
3084
+ }
3085
+ [theme=qtcreator-light] .hljs-code .hljs-selector-class {
3086
+ color: purple;
3087
+ }
3088
+ [theme=qtcreator-light] .hljs-emphasis, [theme=qtcreator-light] .hljs-stronge, [theme=qtcreator-light] .hljs-type {
3089
+ font-style: italic;
3090
+ }
3091
+ [theme=qtcreator-light] .hljs-function, [theme=qtcreator-light] .hljs-keyword, [theme=qtcreator-light] .hljs-name, [theme=qtcreator-light] .hljs-section, [theme=qtcreator-light] .hljs-selector-tag, [theme=qtcreator-light] .hljs-symbol {
3092
+ color: olive;
3093
+ }
3094
+ [theme=qtcreator-light] .hljs-subst, [theme=qtcreator-light] .hljs-tag, [theme=qtcreator-light] .hljs-title {
3095
+ color: #000;
3096
+ }
3097
+ [theme=qtcreator-light] .hljs-attribute {
3098
+ color: maroon;
3099
+ }
3100
+ [theme=qtcreator-light] .hljs-class .hljs-title, [theme=qtcreator-light] .hljs-params, [theme=qtcreator-light] .hljs-title.class_, [theme=qtcreator-light] .hljs-variable {
3101
+ color: #0055af;
3102
+ }
3103
+ [theme=qtcreator-light] .hljs-addition, [theme=qtcreator-light] .hljs-built_in, [theme=qtcreator-light] .hljs-comment, [theme=qtcreator-light] .hljs-deletion, [theme=qtcreator-light] .hljs-link, [theme=qtcreator-light] .hljs-meta, [theme=qtcreator-light] .hljs-selector-attr, [theme=qtcreator-light] .hljs-selector-id, [theme=qtcreator-light] .hljs-selector-pseudo, [theme=qtcreator-light] .hljs-string, [theme=qtcreator-light] .hljs-template-tag, [theme=qtcreator-light] .hljs-template-variable, [theme=qtcreator-light] .hljs-type {
3104
+ color: green;
3105
+ }
3106
+
3107
+ [theme=rainbow] pre code.hljs {
3108
+ display: block;
3109
+ overflow-x: auto;
3110
+ padding: 1em;
3111
+ }
3112
+ [theme=rainbow] code.hljs {
3113
+ padding: 3px 5px;
3114
+ }
3115
+ [theme=rainbow] .hljs {
3116
+ background: #474949;
3117
+ color: #d1d9e1;
3118
+ }
3119
+ [theme=rainbow] .hljs-comment, [theme=rainbow] .hljs-quote {
3120
+ color: #969896;
3121
+ font-style: italic;
3122
+ }
3123
+ [theme=rainbow] .hljs-addition, [theme=rainbow] .hljs-keyword, [theme=rainbow] .hljs-literal, [theme=rainbow] .hljs-selector-tag, [theme=rainbow] .hljs-type {
3124
+ color: #c9c;
3125
+ }
3126
+ [theme=rainbow] .hljs-number, [theme=rainbow] .hljs-selector-attr, [theme=rainbow] .hljs-selector-pseudo {
3127
+ color: #f99157;
3128
+ }
3129
+ [theme=rainbow] .hljs-doctag, [theme=rainbow] .hljs-regexp, [theme=rainbow] .hljs-string {
3130
+ color: #8abeb7;
3131
+ }
3132
+ [theme=rainbow] .hljs-built_in, [theme=rainbow] .hljs-name, [theme=rainbow] .hljs-section, [theme=rainbow] .hljs-title {
3133
+ color: #b5bd68;
3134
+ }
3135
+ [theme=rainbow] .hljs-class .hljs-title, [theme=rainbow] .hljs-selector-id, [theme=rainbow] .hljs-template-variable, [theme=rainbow] .hljs-title.class_, [theme=rainbow] .hljs-variable {
3136
+ color: #fc6;
3137
+ }
3138
+ [theme=rainbow] .hljs-name, [theme=rainbow] .hljs-section, [theme=rainbow] .hljs-strong {
3139
+ font-weight: 700;
3140
+ }
3141
+ [theme=rainbow] .hljs-bullet, [theme=rainbow] .hljs-link, [theme=rainbow] .hljs-meta, [theme=rainbow] .hljs-subst, [theme=rainbow] .hljs-symbol {
3142
+ color: #f99157;
3143
+ }
3144
+ [theme=rainbow] .hljs-deletion {
3145
+ color: #dc322f;
3146
+ }
3147
+ [theme=rainbow] .hljs-formula {
3148
+ background: #eee8d5;
3149
+ }
3150
+ [theme=rainbow] .hljs-attr, [theme=rainbow] .hljs-attribute {
3151
+ color: #81a2be;
3152
+ }
3153
+ [theme=rainbow] .hljs-emphasis {
3154
+ font-style: italic;
3155
+ }
3156
+
3157
+ [theme=routeros] pre code.hljs {
3158
+ display: block;
3159
+ overflow-x: auto;
3160
+ padding: 1em;
3161
+ }
3162
+ [theme=routeros] code.hljs {
3163
+ padding: 3px 5px;
3164
+ }
3165
+ [theme=routeros] .hljs {
3166
+ color: #444;
3167
+ background: #f0f0f0;
3168
+ }
3169
+ [theme=routeros] .hljs-subst {
3170
+ color: #444;
3171
+ }
3172
+ [theme=routeros] .hljs-comment {
3173
+ color: #888;
3174
+ }
3175
+ [theme=routeros] .hljs-doctag, [theme=routeros] .hljs-keyword, [theme=routeros] .hljs-meta .hljs-keyword, [theme=routeros] .hljs-name, [theme=routeros] .hljs-selector-tag {
3176
+ font-weight: 700;
3177
+ }
3178
+ [theme=routeros] .hljs-attribute {
3179
+ color: #0e9a00;
3180
+ }
3181
+ [theme=routeros] .hljs-function {
3182
+ color: #99069a;
3183
+ }
3184
+ [theme=routeros] .hljs-deletion, [theme=routeros] .hljs-number, [theme=routeros] .hljs-quote, [theme=routeros] .hljs-selector-class, [theme=routeros] .hljs-selector-id, [theme=routeros] .hljs-string, [theme=routeros] .hljs-template-tag, [theme=routeros] .hljs-type {
3185
+ color: #800;
3186
+ }
3187
+ [theme=routeros] .hljs-section, [theme=routeros] .hljs-title {
3188
+ color: #800;
3189
+ font-weight: 700;
3190
+ }
3191
+ [theme=routeros] .hljs-link, [theme=routeros] .hljs-regexp, [theme=routeros] .hljs-selector-attr, [theme=routeros] .hljs-selector-pseudo, [theme=routeros] .hljs-symbol, [theme=routeros] .hljs-template-variable, [theme=routeros] .hljs-variable {
3192
+ color: #bc6060;
3193
+ }
3194
+ [theme=routeros] .hljs-literal {
3195
+ color: #78a960;
3196
+ }
3197
+ [theme=routeros] .hljs-addition, [theme=routeros] .hljs-built_in, [theme=routeros] .hljs-bullet, [theme=routeros] .hljs-code {
3198
+ color: #0c9a9a;
3199
+ }
3200
+ [theme=routeros] .hljs-meta {
3201
+ color: #1f7199;
3202
+ }
3203
+ [theme=routeros] .hljs-meta .hljs-string {
3204
+ color: #4d99bf;
3205
+ }
3206
+ [theme=routeros] .hljs-emphasis {
3207
+ font-style: italic;
3208
+ }
3209
+ [theme=routeros] .hljs-strong {
3210
+ font-weight: 700;
3211
+ }
3212
+
3213
+ [theme=school-book] pre code.hljs {
3214
+ display: block;
3215
+ overflow-x: auto;
3216
+ padding: 1em;
3217
+ }
3218
+ [theme=school-book] code.hljs {
3219
+ padding: 3px 5px;
3220
+ }
3221
+ [theme=school-book] .hljs {
3222
+ color: #3e5915;
3223
+ background: #f6f5b2;
3224
+ }
3225
+ [theme=school-book] .hljs-keyword, [theme=school-book] .hljs-literal, [theme=school-book] .hljs-selector-tag {
3226
+ color: #059;
3227
+ }
3228
+ [theme=school-book] .hljs-subst {
3229
+ color: #3e5915;
3230
+ }
3231
+ [theme=school-book] .hljs-addition, [theme=school-book] .hljs-attribute, [theme=school-book] .hljs-built_in, [theme=school-book] .hljs-bullet, [theme=school-book] .hljs-link, [theme=school-book] .hljs-section, [theme=school-book] .hljs-string, [theme=school-book] .hljs-symbol, [theme=school-book] .hljs-template-tag, [theme=school-book] .hljs-template-variable, [theme=school-book] .hljs-title, [theme=school-book] .hljs-type, [theme=school-book] .hljs-variable {
3232
+ color: #2c009f;
3233
+ }
3234
+ [theme=school-book] .hljs-comment, [theme=school-book] .hljs-deletion, [theme=school-book] .hljs-meta, [theme=school-book] .hljs-quote {
3235
+ color: #e60415;
3236
+ }
3237
+ [theme=school-book] .hljs-doctag, [theme=school-book] .hljs-keyword, [theme=school-book] .hljs-literal, [theme=school-book] .hljs-name, [theme=school-book] .hljs-section, [theme=school-book] .hljs-selector-id, [theme=school-book] .hljs-selector-tag, [theme=school-book] .hljs-strong, [theme=school-book] .hljs-title, [theme=school-book] .hljs-type {
3238
+ font-weight: 700;
3239
+ }
3240
+ [theme=school-book] .hljs-emphasis {
3241
+ font-style: italic;
3242
+ }
3243
+
3244
+ [theme=shades-of-purple] pre code.hljs {
3245
+ display: block;
3246
+ overflow-x: auto;
3247
+ padding: 1em;
3248
+ }
3249
+ [theme=shades-of-purple] code.hljs {
3250
+ padding: 3px 5px;
3251
+ }
3252
+ [theme=shades-of-purple] .hljs {
3253
+ background: #2d2b57;
3254
+ color: #e3dfff;
3255
+ font-weight: 400;
3256
+ }
3257
+ [theme=shades-of-purple] .hljs-subst {
3258
+ color: #e3dfff;
3259
+ }
3260
+ [theme=shades-of-purple] .hljs-title {
3261
+ color: #fad000;
3262
+ font-weight: 400;
3263
+ }
3264
+ [theme=shades-of-purple] .hljs-name {
3265
+ color: #a1feff;
3266
+ }
3267
+ [theme=shades-of-purple] .hljs-tag {
3268
+ color: #fff;
3269
+ }
3270
+ [theme=shades-of-purple] .hljs-attr {
3271
+ color: #f8d000;
3272
+ font-style: italic;
3273
+ }
3274
+ [theme=shades-of-purple] .hljs-built_in, [theme=shades-of-purple] .hljs-keyword, [theme=shades-of-purple] .hljs-section, [theme=shades-of-purple] .hljs-selector-tag {
3275
+ color: #fb9e00;
3276
+ }
3277
+ [theme=shades-of-purple] .hljs-addition, [theme=shades-of-purple] .hljs-attribute, [theme=shades-of-purple] .hljs-bullet, [theme=shades-of-purple] .hljs-code, [theme=shades-of-purple] .hljs-deletion, [theme=shades-of-purple] .hljs-quote, [theme=shades-of-purple] .hljs-regexp, [theme=shades-of-purple] .hljs-selector-attr, [theme=shades-of-purple] .hljs-selector-class, [theme=shades-of-purple] .hljs-selector-pseudo, [theme=shades-of-purple] .hljs-string, [theme=shades-of-purple] .hljs-symbol, [theme=shades-of-purple] .hljs-template-tag {
3278
+ color: #4cd213;
3279
+ }
3280
+ [theme=shades-of-purple] .hljs-meta, [theme=shades-of-purple] .hljs-meta .hljs-string {
3281
+ color: #fb9e00;
3282
+ }
3283
+ [theme=shades-of-purple] .hljs-comment {
3284
+ color: #ac65ff;
3285
+ }
3286
+ [theme=shades-of-purple] .hljs-keyword, [theme=shades-of-purple] .hljs-literal, [theme=shades-of-purple] .hljs-name, [theme=shades-of-purple] .hljs-selector-tag, [theme=shades-of-purple] .hljs-strong {
3287
+ font-weight: 400;
3288
+ }
3289
+ [theme=shades-of-purple] .hljs-literal, [theme=shades-of-purple] .hljs-number {
3290
+ color: #fa658d;
3291
+ }
3292
+ [theme=shades-of-purple] .hljs-emphasis {
3293
+ font-style: italic;
3294
+ }
3295
+ [theme=shades-of-purple] .hljs-strong {
3296
+ font-weight: 700;
3297
+ }
3298
+
3299
+ [theme=srcery] pre code.hljs {
3300
+ display: block;
3301
+ overflow-x: auto;
3302
+ padding: 1em;
3303
+ }
3304
+ [theme=srcery] code.hljs {
3305
+ padding: 3px 5px;
3306
+ }
3307
+ [theme=srcery] .hljs {
3308
+ background: #1c1b19;
3309
+ color: #fce8c3;
3310
+ }
3311
+ [theme=srcery] .hljs-literal, [theme=srcery] .hljs-quote, [theme=srcery] .hljs-subst {
3312
+ color: #fce8c3;
3313
+ }
3314
+ [theme=srcery] .hljs-symbol, [theme=srcery] .hljs-type {
3315
+ color: #68a8e4;
3316
+ }
3317
+ [theme=srcery] .hljs-deletion, [theme=srcery] .hljs-keyword {
3318
+ color: #ef2f27;
3319
+ }
3320
+ [theme=srcery] .hljs-attribute, [theme=srcery] .hljs-function, [theme=srcery] .hljs-name, [theme=srcery] .hljs-section, [theme=srcery] .hljs-selector-attr, [theme=srcery] .hljs-selector-class, [theme=srcery] .hljs-selector-id, [theme=srcery] .hljs-selector-pseudo, [theme=srcery] .hljs-title {
3321
+ color: #fbb829;
3322
+ }
3323
+ [theme=srcery] .hljs-class, [theme=srcery] .hljs-code, [theme=srcery] .hljs-property, [theme=srcery] .hljs-template-variable, [theme=srcery] .hljs-variable {
3324
+ color: #0aaeb3;
3325
+ }
3326
+ [theme=srcery] .hljs-addition, [theme=srcery] .hljs-bullet, [theme=srcery] .hljs-regexp, [theme=srcery] .hljs-string {
3327
+ color: #98bc37;
3328
+ }
3329
+ [theme=srcery] .hljs-built_in, [theme=srcery] .hljs-params {
3330
+ color: #ff5c8f;
3331
+ }
3332
+ [theme=srcery] .hljs-selector-tag, [theme=srcery] .hljs-template-tag {
3333
+ color: #2c78bf;
3334
+ }
3335
+ [theme=srcery] .hljs-comment, [theme=srcery] .hljs-link, [theme=srcery] .hljs-meta, [theme=srcery] .hljs-number {
3336
+ color: #918175;
3337
+ }
3338
+ [theme=srcery] .hljs-emphasis {
3339
+ font-style: italic;
3340
+ }
3341
+ [theme=srcery] .hljs-strong {
3342
+ font-weight: 700;
3343
+ }
3344
+
3345
+ [theme=stackoverflow-dark] {
3346
+ /*!
3347
+ Theme: StackOverflow Dark
3348
+ Description: Dark theme as used on stackoverflow.com
3349
+ Author: stackoverflow.com
3350
+ Maintainer: @Hirse
3351
+ Website: https://github.com/StackExchange/Stacks
3352
+ License: MIT
3353
+ Updated: 2021-05-15
3354
+
3355
+ Updated for @stackoverflow/stacks v0.64.0
3356
+ Code Blocks: /blob/v0.64.0/lib/css/components/_stacks-code-blocks.less
3357
+ Colors: /blob/v0.64.0/lib/css/exports/_stacks-constants-colors.less
3358
+ */
3359
+ }
3360
+ [theme=stackoverflow-dark] pre code.hljs {
3361
+ display: block;
3362
+ overflow-x: auto;
3363
+ padding: 1em;
3364
+ }
3365
+ [theme=stackoverflow-dark] code.hljs {
3366
+ padding: 3px 5px;
3367
+ }
3368
+ [theme=stackoverflow-dark] .hljs {
3369
+ color: #fff;
3370
+ background: #1c1b1b;
3371
+ }
3372
+ [theme=stackoverflow-dark] .hljs-subst {
3373
+ color: #fff;
3374
+ }
3375
+ [theme=stackoverflow-dark] .hljs-comment {
3376
+ color: #999;
3377
+ }
3378
+ [theme=stackoverflow-dark] .hljs-attr, [theme=stackoverflow-dark] .hljs-doctag, [theme=stackoverflow-dark] .hljs-keyword, [theme=stackoverflow-dark] .hljs-meta .hljs-keyword, [theme=stackoverflow-dark] .hljs-section, [theme=stackoverflow-dark] .hljs-selector-tag {
3379
+ color: #88aece;
3380
+ }
3381
+ [theme=stackoverflow-dark] .hljs-attribute {
3382
+ color: #c59bc1;
3383
+ }
3384
+ [theme=stackoverflow-dark] .hljs-name, [theme=stackoverflow-dark] .hljs-number, [theme=stackoverflow-dark] .hljs-quote, [theme=stackoverflow-dark] .hljs-selector-id, [theme=stackoverflow-dark] .hljs-template-tag, [theme=stackoverflow-dark] .hljs-type {
3385
+ color: #f08d49;
3386
+ }
3387
+ [theme=stackoverflow-dark] .hljs-selector-class {
3388
+ color: #88aece;
3389
+ }
3390
+ [theme=stackoverflow-dark] .hljs-link, [theme=stackoverflow-dark] .hljs-regexp, [theme=stackoverflow-dark] .hljs-selector-attr, [theme=stackoverflow-dark] .hljs-string, [theme=stackoverflow-dark] .hljs-symbol, [theme=stackoverflow-dark] .hljs-template-variable, [theme=stackoverflow-dark] .hljs-variable {
3391
+ color: #b5bd68;
3392
+ }
3393
+ [theme=stackoverflow-dark] .hljs-meta, [theme=stackoverflow-dark] .hljs-selector-pseudo {
3394
+ color: #88aece;
3395
+ }
3396
+ [theme=stackoverflow-dark] .hljs-built_in, [theme=stackoverflow-dark] .hljs-literal, [theme=stackoverflow-dark] .hljs-title {
3397
+ color: #f08d49;
3398
+ }
3399
+ [theme=stackoverflow-dark] .hljs-bullet, [theme=stackoverflow-dark] .hljs-code {
3400
+ color: #ccc;
3401
+ }
3402
+ [theme=stackoverflow-dark] .hljs-meta .hljs-string {
3403
+ color: #b5bd68;
3404
+ }
3405
+ [theme=stackoverflow-dark] .hljs-deletion {
3406
+ color: #de7176;
3407
+ }
3408
+ [theme=stackoverflow-dark] .hljs-addition {
3409
+ color: #76c490;
3410
+ }
3411
+ [theme=stackoverflow-dark] .hljs-emphasis {
3412
+ font-style: italic;
3413
+ }
3414
+ [theme=stackoverflow-dark] .hljs-strong {
3415
+ font-weight: 700;
3416
+ }
3417
+
3418
+ [theme=stackoverflow-light] {
3419
+ /*!
3420
+ Theme: StackOverflow Light
3421
+ Description: Light theme as used on stackoverflow.com
3422
+ Author: stackoverflow.com
3423
+ Maintainer: @Hirse
3424
+ Website: https://github.com/StackExchange/Stacks
3425
+ License: MIT
3426
+ Updated: 2021-05-15
3427
+
3428
+ Updated for @stackoverflow/stacks v0.64.0
3429
+ Code Blocks: /blob/v0.64.0/lib/css/components/_stacks-code-blocks.less
3430
+ Colors: /blob/v0.64.0/lib/css/exports/_stacks-constants-colors.less
3431
+ */
3432
+ }
3433
+ [theme=stackoverflow-light] pre code.hljs {
3434
+ display: block;
3435
+ overflow-x: auto;
3436
+ padding: 1em;
3437
+ }
3438
+ [theme=stackoverflow-light] code.hljs {
3439
+ padding: 3px 5px;
3440
+ }
3441
+ [theme=stackoverflow-light] .hljs {
3442
+ color: #2f3337;
3443
+ background: #f6f6f6;
3444
+ }
3445
+ [theme=stackoverflow-light] .hljs-subst {
3446
+ color: #2f3337;
3447
+ }
3448
+ [theme=stackoverflow-light] .hljs-comment {
3449
+ color: #656e77;
3450
+ }
3451
+ [theme=stackoverflow-light] .hljs-attr, [theme=stackoverflow-light] .hljs-doctag, [theme=stackoverflow-light] .hljs-keyword, [theme=stackoverflow-light] .hljs-meta .hljs-keyword, [theme=stackoverflow-light] .hljs-section, [theme=stackoverflow-light] .hljs-selector-tag {
3452
+ color: #015692;
3453
+ }
3454
+ [theme=stackoverflow-light] .hljs-attribute {
3455
+ color: #803378;
3456
+ }
3457
+ [theme=stackoverflow-light] .hljs-name, [theme=stackoverflow-light] .hljs-number, [theme=stackoverflow-light] .hljs-quote, [theme=stackoverflow-light] .hljs-selector-id, [theme=stackoverflow-light] .hljs-template-tag, [theme=stackoverflow-light] .hljs-type {
3458
+ color: #b75501;
3459
+ }
3460
+ [theme=stackoverflow-light] .hljs-selector-class {
3461
+ color: #015692;
3462
+ }
3463
+ [theme=stackoverflow-light] .hljs-link, [theme=stackoverflow-light] .hljs-regexp, [theme=stackoverflow-light] .hljs-selector-attr, [theme=stackoverflow-light] .hljs-string, [theme=stackoverflow-light] .hljs-symbol, [theme=stackoverflow-light] .hljs-template-variable, [theme=stackoverflow-light] .hljs-variable {
3464
+ color: #54790d;
3465
+ }
3466
+ [theme=stackoverflow-light] .hljs-meta, [theme=stackoverflow-light] .hljs-selector-pseudo {
3467
+ color: #015692;
3468
+ }
3469
+ [theme=stackoverflow-light] .hljs-built_in, [theme=stackoverflow-light] .hljs-literal, [theme=stackoverflow-light] .hljs-title {
3470
+ color: #b75501;
3471
+ }
3472
+ [theme=stackoverflow-light] .hljs-bullet, [theme=stackoverflow-light] .hljs-code {
3473
+ color: #535a60;
3474
+ }
3475
+ [theme=stackoverflow-light] .hljs-meta .hljs-string {
3476
+ color: #54790d;
3477
+ }
3478
+ [theme=stackoverflow-light] .hljs-deletion {
3479
+ color: #c02d2e;
3480
+ }
3481
+ [theme=stackoverflow-light] .hljs-addition {
3482
+ color: #2f6f44;
3483
+ }
3484
+ [theme=stackoverflow-light] .hljs-emphasis {
3485
+ font-style: italic;
3486
+ }
3487
+ [theme=stackoverflow-light] .hljs-strong {
3488
+ font-weight: 700;
3489
+ }
3490
+
3491
+ [theme=sunburst] pre code.hljs {
3492
+ display: block;
3493
+ overflow-x: auto;
3494
+ padding: 1em;
3495
+ }
3496
+ [theme=sunburst] code.hljs {
3497
+ padding: 3px 5px;
3498
+ }
3499
+ [theme=sunburst] .hljs {
3500
+ background: #000;
3501
+ color: #f8f8f8;
3502
+ }
3503
+ [theme=sunburst] .hljs-comment, [theme=sunburst] .hljs-quote {
3504
+ color: #aeaeae;
3505
+ font-style: italic;
3506
+ }
3507
+ [theme=sunburst] .hljs-keyword, [theme=sunburst] .hljs-selector-tag, [theme=sunburst] .hljs-type {
3508
+ color: #e28964;
3509
+ }
3510
+ [theme=sunburst] .hljs-string {
3511
+ color: #65b042;
3512
+ }
3513
+ [theme=sunburst] .hljs-subst {
3514
+ color: #daefa3;
3515
+ }
3516
+ [theme=sunburst] .hljs-link, [theme=sunburst] .hljs-regexp {
3517
+ color: #e9c062;
3518
+ }
3519
+ [theme=sunburst] .hljs-name, [theme=sunburst] .hljs-section, [theme=sunburst] .hljs-tag, [theme=sunburst] .hljs-title {
3520
+ color: #89bdff;
3521
+ }
3522
+ [theme=sunburst] .hljs-class .hljs-title, [theme=sunburst] .hljs-doctag, [theme=sunburst] .hljs-title.class_ {
3523
+ text-decoration: underline;
3524
+ }
3525
+ [theme=sunburst] .hljs-bullet, [theme=sunburst] .hljs-number, [theme=sunburst] .hljs-symbol {
3526
+ color: #3387cc;
3527
+ }
3528
+ [theme=sunburst] .hljs-params, [theme=sunburst] .hljs-template-variable, [theme=sunburst] .hljs-variable {
3529
+ color: #3e87e3;
3530
+ }
3531
+ [theme=sunburst] .hljs-attribute {
3532
+ color: #cda869;
3533
+ }
3534
+ [theme=sunburst] .hljs-meta {
3535
+ color: #8996a8;
3536
+ }
3537
+ [theme=sunburst] .hljs-formula {
3538
+ background-color: #0e2231;
3539
+ color: #f8f8f8;
3540
+ font-style: italic;
3541
+ }
3542
+ [theme=sunburst] .hljs-addition {
3543
+ background-color: #253b22;
3544
+ color: #f8f8f8;
3545
+ }
3546
+ [theme=sunburst] .hljs-deletion {
3547
+ background-color: #420e09;
3548
+ color: #f8f8f8;
3549
+ }
3550
+ [theme=sunburst] .hljs-selector-class {
3551
+ color: #9b703f;
3552
+ }
3553
+ [theme=sunburst] .hljs-selector-id {
3554
+ color: #8b98ab;
3555
+ }
3556
+ [theme=sunburst] .hljs-emphasis {
3557
+ font-style: italic;
3558
+ }
3559
+ [theme=sunburst] .hljs-strong {
3560
+ font-weight: 700;
3561
+ }
3562
+
3563
+ [theme=tokyo-night-dark] {
3564
+ /*!
3565
+ Theme: Tokyo-night-Dark
3566
+ origin: https://github.com/enkia/tokyo-night-vscode-theme
3567
+ Description: Original highlight.js style
3568
+ Author: (c) Henri Vandersleyen <hvandersleyen@gmail.com>
3569
+ License: see project LICENSE
3570
+ Touched: 2022
3571
+ */
3572
+ }
3573
+ [theme=tokyo-night-dark] pre code.hljs {
3574
+ display: block;
3575
+ overflow-x: auto;
3576
+ padding: 1em;
3577
+ }
3578
+ [theme=tokyo-night-dark] code.hljs {
3579
+ padding: 3px 5px;
3580
+ }
3581
+ [theme=tokyo-night-dark] .hljs-comment, [theme=tokyo-night-dark] .hljs-meta {
3582
+ color: #565f89;
3583
+ }
3584
+ [theme=tokyo-night-dark] .hljs-deletion, [theme=tokyo-night-dark] .hljs-doctag, [theme=tokyo-night-dark] .hljs-regexp, [theme=tokyo-night-dark] .hljs-selector-attr, [theme=tokyo-night-dark] .hljs-selector-class, [theme=tokyo-night-dark] .hljs-selector-id, [theme=tokyo-night-dark] .hljs-selector-pseudo, [theme=tokyo-night-dark] .hljs-tag, [theme=tokyo-night-dark] .hljs-template-tag, [theme=tokyo-night-dark] .hljs-variable.language_ {
3585
+ color: #f7768e;
3586
+ }
3587
+ [theme=tokyo-night-dark] .hljs-link, [theme=tokyo-night-dark] .hljs-literal, [theme=tokyo-night-dark] .hljs-number, [theme=tokyo-night-dark] .hljs-params, [theme=tokyo-night-dark] .hljs-template-variable, [theme=tokyo-night-dark] .hljs-type, [theme=tokyo-night-dark] .hljs-variable {
3588
+ color: #ff9e64;
3589
+ }
3590
+ [theme=tokyo-night-dark] .hljs-attribute, [theme=tokyo-night-dark] .hljs-built_in {
3591
+ color: #e0af68;
3592
+ }
3593
+ [theme=tokyo-night-dark] .hljs-keyword, [theme=tokyo-night-dark] .hljs-property, [theme=tokyo-night-dark] .hljs-subst, [theme=tokyo-night-dark] .hljs-title, [theme=tokyo-night-dark] .hljs-title.class_, [theme=tokyo-night-dark] .hljs-title.class_.inherited__, [theme=tokyo-night-dark] .hljs-title.function_ {
3594
+ color: #7dcfff;
3595
+ }
3596
+ [theme=tokyo-night-dark] .hljs-selector-tag {
3597
+ color: #73daca;
3598
+ }
3599
+ [theme=tokyo-night-dark] .hljs-addition, [theme=tokyo-night-dark] .hljs-bullet, [theme=tokyo-night-dark] .hljs-quote, [theme=tokyo-night-dark] .hljs-string, [theme=tokyo-night-dark] .hljs-symbol {
3600
+ color: #9ece6a;
3601
+ }
3602
+ [theme=tokyo-night-dark] .hljs-code, [theme=tokyo-night-dark] .hljs-formula, [theme=tokyo-night-dark] .hljs-section {
3603
+ color: #7aa2f7;
3604
+ }
3605
+ [theme=tokyo-night-dark] .hljs-attr, [theme=tokyo-night-dark] .hljs-char.escape_, [theme=tokyo-night-dark] .hljs-keyword, [theme=tokyo-night-dark] .hljs-name, [theme=tokyo-night-dark] .hljs-operator {
3606
+ color: #bb9af7;
3607
+ }
3608
+ [theme=tokyo-night-dark] .hljs-punctuation {
3609
+ color: #c0caf5;
3610
+ }
3611
+ [theme=tokyo-night-dark] .hljs {
3612
+ background: #1a1b26;
3613
+ color: #9aa5ce;
3614
+ }
3615
+ [theme=tokyo-night-dark] .hljs-emphasis {
3616
+ font-style: italic;
3617
+ }
3618
+ [theme=tokyo-night-dark] .hljs-strong {
3619
+ font-weight: 700;
3620
+ }
3621
+
3622
+ [theme=tokyo-night-light] {
3623
+ /*!
3624
+ Theme: Tokyo-night-light
3625
+ origin: https://github.com/enkia/tokyo-night-vscode-theme
3626
+ Description: Original highlight.js style
3627
+ Author: (c) Henri Vandersleyen <hvandersleyen@gmail.com>
3628
+ License: see project LICENSE
3629
+ Touched: 2022
3630
+ */
3631
+ }
3632
+ [theme=tokyo-night-light] pre code.hljs {
3633
+ display: block;
3634
+ overflow-x: auto;
3635
+ padding: 1em;
3636
+ }
3637
+ [theme=tokyo-night-light] code.hljs {
3638
+ padding: 3px 5px;
3639
+ }
3640
+ [theme=tokyo-night-light] .hljs-comment, [theme=tokyo-night-light] .hljs-meta {
3641
+ color: #9699a3;
3642
+ }
3643
+ [theme=tokyo-night-light] .hljs-deletion, [theme=tokyo-night-light] .hljs-doctag, [theme=tokyo-night-light] .hljs-regexp, [theme=tokyo-night-light] .hljs-selector-attr, [theme=tokyo-night-light] .hljs-selector-class, [theme=tokyo-night-light] .hljs-selector-id, [theme=tokyo-night-light] .hljs-selector-pseudo, [theme=tokyo-night-light] .hljs-tag, [theme=tokyo-night-light] .hljs-template-tag, [theme=tokyo-night-light] .hljs-variable.language_ {
3644
+ color: #8c4351;
3645
+ }
3646
+ [theme=tokyo-night-light] .hljs-link, [theme=tokyo-night-light] .hljs-literal, [theme=tokyo-night-light] .hljs-number, [theme=tokyo-night-light] .hljs-params, [theme=tokyo-night-light] .hljs-template-variable, [theme=tokyo-night-light] .hljs-type, [theme=tokyo-night-light] .hljs-variable {
3647
+ color: #965027;
3648
+ }
3649
+ [theme=tokyo-night-light] .hljs-attribute, [theme=tokyo-night-light] .hljs-built_in {
3650
+ color: #8f5e15;
3651
+ }
3652
+ [theme=tokyo-night-light] .hljs-keyword, [theme=tokyo-night-light] .hljs-property, [theme=tokyo-night-light] .hljs-subst, [theme=tokyo-night-light] .hljs-title, [theme=tokyo-night-light] .hljs-title.class_, [theme=tokyo-night-light] .hljs-title.class_.inherited__, [theme=tokyo-night-light] .hljs-title.function_ {
3653
+ color: #0f4b6e;
3654
+ }
3655
+ [theme=tokyo-night-light] .hljs-selector-tag {
3656
+ color: #33635c;
3657
+ }
3658
+ [theme=tokyo-night-light] .hljs-addition, [theme=tokyo-night-light] .hljs-bullet, [theme=tokyo-night-light] .hljs-quote, [theme=tokyo-night-light] .hljs-string, [theme=tokyo-night-light] .hljs-symbol {
3659
+ color: #485e30;
3660
+ }
3661
+ [theme=tokyo-night-light] .hljs-code, [theme=tokyo-night-light] .hljs-formula, [theme=tokyo-night-light] .hljs-section {
3662
+ color: #34548a;
3663
+ }
3664
+ [theme=tokyo-night-light] .hljs-attr, [theme=tokyo-night-light] .hljs-char.escape_, [theme=tokyo-night-light] .hljs-keyword, [theme=tokyo-night-light] .hljs-name, [theme=tokyo-night-light] .hljs-operator {
3665
+ color: #5a4a78;
3666
+ }
3667
+ [theme=tokyo-night-light] .hljs-punctuation {
3668
+ color: #343b58;
3669
+ }
3670
+ [theme=tokyo-night-light] .hljs {
3671
+ background: #d5d6db;
3672
+ color: #565a6e;
3673
+ }
3674
+ [theme=tokyo-night-light] .hljs-emphasis {
3675
+ font-style: italic;
3676
+ }
3677
+ [theme=tokyo-night-light] .hljs-strong {
3678
+ font-weight: 700;
3679
+ }
3680
+
3681
+ [theme=tomorrow-night-blue] pre code.hljs {
3682
+ display: block;
3683
+ overflow-x: auto;
3684
+ padding: 1em;
3685
+ }
3686
+ [theme=tomorrow-night-blue] code.hljs {
3687
+ padding: 3px 5px;
3688
+ }
3689
+ [theme=tomorrow-night-blue] .hljs-comment, [theme=tomorrow-night-blue] .hljs-quote {
3690
+ color: #7285b7;
3691
+ }
3692
+ [theme=tomorrow-night-blue] .hljs-deletion, [theme=tomorrow-night-blue] .hljs-name, [theme=tomorrow-night-blue] .hljs-regexp, [theme=tomorrow-night-blue] .hljs-selector-class, [theme=tomorrow-night-blue] .hljs-selector-id, [theme=tomorrow-night-blue] .hljs-tag, [theme=tomorrow-night-blue] .hljs-template-variable, [theme=tomorrow-night-blue] .hljs-variable {
3693
+ color: #ff9da4;
3694
+ }
3695
+ [theme=tomorrow-night-blue] .hljs-built_in, [theme=tomorrow-night-blue] .hljs-link, [theme=tomorrow-night-blue] .hljs-literal, [theme=tomorrow-night-blue] .hljs-meta, [theme=tomorrow-night-blue] .hljs-number, [theme=tomorrow-night-blue] .hljs-params, [theme=tomorrow-night-blue] .hljs-type {
3696
+ color: #ffc58f;
3697
+ }
3698
+ [theme=tomorrow-night-blue] .hljs-attribute {
3699
+ color: #ffeead;
3700
+ }
3701
+ [theme=tomorrow-night-blue] .hljs-addition, [theme=tomorrow-night-blue] .hljs-bullet, [theme=tomorrow-night-blue] .hljs-string, [theme=tomorrow-night-blue] .hljs-symbol {
3702
+ color: #d1f1a9;
3703
+ }
3704
+ [theme=tomorrow-night-blue] .hljs-section, [theme=tomorrow-night-blue] .hljs-title {
3705
+ color: #bbdaff;
3706
+ }
3707
+ [theme=tomorrow-night-blue] .hljs-keyword, [theme=tomorrow-night-blue] .hljs-selector-tag {
3708
+ color: #ebbbff;
3709
+ }
3710
+ [theme=tomorrow-night-blue] .hljs {
3711
+ background: #002451;
3712
+ color: #fff;
3713
+ }
3714
+ [theme=tomorrow-night-blue] .hljs-emphasis {
3715
+ font-style: italic;
3716
+ }
3717
+ [theme=tomorrow-night-blue] .hljs-strong {
3718
+ font-weight: 700;
3719
+ }
3720
+
3721
+ [theme=tomorrow-night-bright] pre code.hljs {
3722
+ display: block;
3723
+ overflow-x: auto;
3724
+ padding: 1em;
3725
+ }
3726
+ [theme=tomorrow-night-bright] code.hljs {
3727
+ padding: 3px 5px;
3728
+ }
3729
+ [theme=tomorrow-night-bright] .hljs-comment, [theme=tomorrow-night-bright] .hljs-quote {
3730
+ color: #969896;
3731
+ }
3732
+ [theme=tomorrow-night-bright] .hljs-deletion, [theme=tomorrow-night-bright] .hljs-name, [theme=tomorrow-night-bright] .hljs-regexp, [theme=tomorrow-night-bright] .hljs-selector-class, [theme=tomorrow-night-bright] .hljs-selector-id, [theme=tomorrow-night-bright] .hljs-tag, [theme=tomorrow-night-bright] .hljs-template-variable, [theme=tomorrow-night-bright] .hljs-variable {
3733
+ color: #d54e53;
3734
+ }
3735
+ [theme=tomorrow-night-bright] .hljs-built_in, [theme=tomorrow-night-bright] .hljs-link, [theme=tomorrow-night-bright] .hljs-literal, [theme=tomorrow-night-bright] .hljs-meta, [theme=tomorrow-night-bright] .hljs-number, [theme=tomorrow-night-bright] .hljs-params, [theme=tomorrow-night-bright] .hljs-type {
3736
+ color: #e78c45;
3737
+ }
3738
+ [theme=tomorrow-night-bright] .hljs-attribute {
3739
+ color: #e7c547;
3740
+ }
3741
+ [theme=tomorrow-night-bright] .hljs-addition, [theme=tomorrow-night-bright] .hljs-bullet, [theme=tomorrow-night-bright] .hljs-string, [theme=tomorrow-night-bright] .hljs-symbol {
3742
+ color: #b9ca4a;
3743
+ }
3744
+ [theme=tomorrow-night-bright] .hljs-section, [theme=tomorrow-night-bright] .hljs-title {
3745
+ color: #7aa6da;
3746
+ }
3747
+ [theme=tomorrow-night-bright] .hljs-keyword, [theme=tomorrow-night-bright] .hljs-selector-tag {
3748
+ color: #c397d8;
3749
+ }
3750
+ [theme=tomorrow-night-bright] .hljs {
3751
+ background: #000;
3752
+ color: #eaeaea;
3753
+ }
3754
+ [theme=tomorrow-night-bright] .hljs-emphasis {
3755
+ font-style: italic;
3756
+ }
3757
+ [theme=tomorrow-night-bright] .hljs-strong {
3758
+ font-weight: 700;
3759
+ }
3760
+
3761
+ [theme=vs] pre code.hljs {
3762
+ display: block;
3763
+ overflow-x: auto;
3764
+ padding: 1em;
3765
+ }
3766
+ [theme=vs] code.hljs {
3767
+ padding: 3px 5px;
3768
+ }
3769
+ [theme=vs] .hljs {
3770
+ background: #fff;
3771
+ color: #000;
3772
+ }
3773
+ [theme=vs] .hljs-comment, [theme=vs] .hljs-quote, [theme=vs] .hljs-variable {
3774
+ color: green;
3775
+ }
3776
+ [theme=vs] .hljs-built_in, [theme=vs] .hljs-keyword, [theme=vs] .hljs-name, [theme=vs] .hljs-selector-tag, [theme=vs] .hljs-tag {
3777
+ color: #00f;
3778
+ }
3779
+ [theme=vs] .hljs-addition, [theme=vs] .hljs-attribute, [theme=vs] .hljs-literal, [theme=vs] .hljs-section, [theme=vs] .hljs-string, [theme=vs] .hljs-template-tag, [theme=vs] .hljs-template-variable, [theme=vs] .hljs-title, [theme=vs] .hljs-type {
3780
+ color: #a31515;
3781
+ }
3782
+ [theme=vs] .hljs-deletion, [theme=vs] .hljs-meta, [theme=vs] .hljs-selector-attr, [theme=vs] .hljs-selector-pseudo {
3783
+ color: #2b91af;
3784
+ }
3785
+ [theme=vs] .hljs-doctag {
3786
+ color: grey;
3787
+ }
3788
+ [theme=vs] .hljs-attr {
3789
+ color: red;
3790
+ }
3791
+ [theme=vs] .hljs-bullet, [theme=vs] .hljs-link, [theme=vs] .hljs-symbol {
3792
+ color: #00b0e8;
3793
+ }
3794
+ [theme=vs] .hljs-emphasis {
3795
+ font-style: italic;
3796
+ }
3797
+ [theme=vs] .hljs-strong {
3798
+ font-weight: 700;
3799
+ }
3800
+
3801
+ [theme=vs2015] pre code.hljs {
3802
+ display: block;
3803
+ overflow-x: auto;
3804
+ padding: 1em;
3805
+ }
3806
+ [theme=vs2015] code.hljs {
3807
+ padding: 3px 5px;
3808
+ }
3809
+ [theme=vs2015] .hljs {
3810
+ background: #1e1e1e;
3811
+ color: #dcdcdc;
3812
+ }
3813
+ [theme=vs2015] .hljs-keyword, [theme=vs2015] .hljs-literal, [theme=vs2015] .hljs-name, [theme=vs2015] .hljs-symbol {
3814
+ color: #569cd6;
3815
+ }
3816
+ [theme=vs2015] .hljs-link {
3817
+ color: #569cd6;
3818
+ text-decoration: underline;
3819
+ }
3820
+ [theme=vs2015] .hljs-built_in, [theme=vs2015] .hljs-type {
3821
+ color: #4ec9b0;
3822
+ }
3823
+ [theme=vs2015] .hljs-class, [theme=vs2015] .hljs-number {
3824
+ color: #b8d7a3;
3825
+ }
3826
+ [theme=vs2015] .hljs-meta .hljs-string, [theme=vs2015] .hljs-string {
3827
+ color: #d69d85;
3828
+ }
3829
+ [theme=vs2015] .hljs-regexp, [theme=vs2015] .hljs-template-tag {
3830
+ color: #9a5334;
3831
+ }
3832
+ [theme=vs2015] .hljs-formula, [theme=vs2015] .hljs-function, [theme=vs2015] .hljs-params, [theme=vs2015] .hljs-subst, [theme=vs2015] .hljs-title {
3833
+ color: #dcdcdc;
3834
+ }
3835
+ [theme=vs2015] .hljs-comment, [theme=vs2015] .hljs-quote {
3836
+ color: #57a64a;
3837
+ font-style: italic;
3838
+ }
3839
+ [theme=vs2015] .hljs-doctag {
3840
+ color: #608b4e;
3841
+ }
3842
+ [theme=vs2015] .hljs-meta, [theme=vs2015] .hljs-meta .hljs-keyword, [theme=vs2015] .hljs-tag {
3843
+ color: #9b9b9b;
3844
+ }
3845
+ [theme=vs2015] .hljs-template-variable, [theme=vs2015] .hljs-variable {
3846
+ color: #bd63c5;
3847
+ }
3848
+ [theme=vs2015] .hljs-attr, [theme=vs2015] .hljs-attribute {
3849
+ color: #9cdcfe;
3850
+ }
3851
+ [theme=vs2015] .hljs-section {
3852
+ color: gold;
3853
+ }
3854
+ [theme=vs2015] .hljs-emphasis {
3855
+ font-style: italic;
3856
+ }
3857
+ [theme=vs2015] .hljs-strong {
3858
+ font-weight: 700;
3859
+ }
3860
+ [theme=vs2015] .hljs-bullet, [theme=vs2015] .hljs-selector-attr, [theme=vs2015] .hljs-selector-class, [theme=vs2015] .hljs-selector-id, [theme=vs2015] .hljs-selector-pseudo, [theme=vs2015] .hljs-selector-tag {
3861
+ color: #d7ba7d;
3862
+ }
3863
+ [theme=vs2015] .hljs-addition {
3864
+ background-color: #144212;
3865
+ display: inline-block;
3866
+ width: 100%;
3867
+ }
3868
+ [theme=vs2015] .hljs-deletion {
3869
+ background-color: #600;
3870
+ display: inline-block;
3871
+ width: 100%;
3872
+ }
3873
+
3874
+ [theme=xcode] pre code.hljs {
3875
+ display: block;
3876
+ overflow-x: auto;
3877
+ padding: 1em;
3878
+ }
3879
+ [theme=xcode] code.hljs {
3880
+ padding: 3px 5px;
3881
+ }
3882
+ [theme=xcode] .hljs {
3883
+ background: #fff;
3884
+ color: #000;
3885
+ }
3886
+ [theme=xcode] .xml .hljs-meta {
3887
+ color: silver;
3888
+ }
3889
+ [theme=xcode] .hljs-comment, [theme=xcode] .hljs-quote {
3890
+ color: #007400;
3891
+ }
3892
+ [theme=xcode] .hljs-attribute, [theme=xcode] .hljs-keyword, [theme=xcode] .hljs-literal, [theme=xcode] .hljs-name, [theme=xcode] .hljs-selector-tag, [theme=xcode] .hljs-tag {
3893
+ color: #aa0d91;
3894
+ }
3895
+ [theme=xcode] .hljs-template-variable, [theme=xcode] .hljs-variable {
3896
+ color: #3f6e74;
3897
+ }
3898
+ [theme=xcode] .hljs-code, [theme=xcode] .hljs-meta .hljs-string, [theme=xcode] .hljs-string {
3899
+ color: #c41a16;
3900
+ }
3901
+ [theme=xcode] .hljs-link, [theme=xcode] .hljs-regexp {
3902
+ color: #0e0eff;
3903
+ }
3904
+ [theme=xcode] .hljs-bullet, [theme=xcode] .hljs-number, [theme=xcode] .hljs-symbol, [theme=xcode] .hljs-title {
3905
+ color: #1c00cf;
3906
+ }
3907
+ [theme=xcode] .hljs-meta, [theme=xcode] .hljs-section {
3908
+ color: #643820;
3909
+ }
3910
+ [theme=xcode] .hljs-built_in, [theme=xcode] .hljs-class .hljs-title, [theme=xcode] .hljs-params, [theme=xcode] .hljs-title.class_, [theme=xcode] .hljs-type {
3911
+ color: #5c2699;
3912
+ }
3913
+ [theme=xcode] .hljs-attr {
3914
+ color: #836c28;
3915
+ }
3916
+ [theme=xcode] .hljs-subst {
3917
+ color: #000;
3918
+ }
3919
+ [theme=xcode] .hljs-formula {
3920
+ background-color: #eee;
3921
+ font-style: italic;
3922
+ }
3923
+ [theme=xcode] .hljs-addition {
3924
+ background-color: #baeeba;
3925
+ }
3926
+ [theme=xcode] .hljs-deletion {
3927
+ background-color: #ffc8bd;
3928
+ }
3929
+ [theme=xcode] .hljs-selector-class, [theme=xcode] .hljs-selector-id {
3930
+ color: #9b703f;
3931
+ }
3932
+ [theme=xcode] .hljs-doctag, [theme=xcode] .hljs-strong {
3933
+ font-weight: 700;
3934
+ }
3935
+ [theme=xcode] .hljs-emphasis {
3936
+ font-style: italic;
3937
+ }
3938
+
3939
+ [theme=xt256] pre code.hljs {
3940
+ display: block;
3941
+ overflow-x: auto;
3942
+ padding: 1em;
3943
+ }
3944
+ [theme=xt256] code.hljs {
3945
+ padding: 3px 5px;
3946
+ }
3947
+ [theme=xt256] .hljs {
3948
+ color: #eaeaea;
3949
+ background: #000;
3950
+ }
3951
+ [theme=xt256] .hljs-subst {
3952
+ color: #eaeaea;
3953
+ }
3954
+ [theme=xt256] .hljs-emphasis {
3955
+ font-style: italic;
3956
+ }
3957
+ [theme=xt256] .hljs-strong {
3958
+ font-weight: 700;
3959
+ }
3960
+ [theme=xt256] .hljs-type {
3961
+ color: #eaeaea;
3962
+ }
3963
+ [theme=xt256] .hljs-params {
3964
+ color: #da0000;
3965
+ }
3966
+ [theme=xt256] .hljs-literal, [theme=xt256] .hljs-name, [theme=xt256] .hljs-number {
3967
+ color: red;
3968
+ font-weight: bolder;
3969
+ }
3970
+ [theme=xt256] .hljs-comment {
3971
+ color: #969896;
3972
+ }
3973
+ [theme=xt256] .hljs-quote, [theme=xt256] .hljs-selector-id {
3974
+ color: #0ff;
3975
+ }
3976
+ [theme=xt256] .hljs-template-variable, [theme=xt256] .hljs-title, [theme=xt256] .hljs-variable {
3977
+ color: #0ff;
3978
+ font-weight: 700;
3979
+ }
3980
+ [theme=xt256] .hljs-keyword, [theme=xt256] .hljs-selector-class, [theme=xt256] .hljs-symbol {
3981
+ color: #fff000;
3982
+ }
3983
+ [theme=xt256] .hljs-bullet, [theme=xt256] .hljs-string {
3984
+ color: #0f0;
3985
+ }
3986
+ [theme=xt256] .hljs-section, [theme=xt256] .hljs-tag {
3987
+ color: #000fff;
3988
+ }
3989
+ [theme=xt256] .hljs-selector-tag {
3990
+ color: #000fff;
3991
+ font-weight: 700;
3992
+ }
3993
+ [theme=xt256] .hljs-attribute, [theme=xt256] .hljs-built_in, [theme=xt256] .hljs-link, [theme=xt256] .hljs-regexp {
3994
+ color: #f0f;
3995
+ }
3996
+ [theme=xt256] .hljs-meta {
3997
+ color: #fff;
3998
+ font-weight: bolder;
3999
+ }