diff --git a/docs/_template/light-dark-theme/styles/dark.css b/docs/_template/light-dark-theme/styles/dark.css index 238a45a5e..7948505a5 100644 --- a/docs/_template/light-dark-theme/styles/dark.css +++ b/docs/_template/light-dark-theme/styles/dark.css @@ -1,6 +1,6 @@ /* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License.txt in the project root for license information. */ @import url('https://fonts.googleapis.com/css?family=Titillium+Web'); -@import url('dracula.css'); +@import url('vs2015.css'); html, body { font-family: 'Titillium Web', 'Segoe UI', Tahoma, Helvetica, sans-serif; diff --git a/docs/_template/light-dark-theme/styles/dracula.css b/docs/_template/light-dark-theme/styles/dracula.css deleted file mode 100644 index 155ad3c25..000000000 --- a/docs/_template/light-dark-theme/styles/dracula.css +++ /dev/null @@ -1,83 +0,0 @@ -/* Dracula Theme v1.2.5 - * - * https://github.com/dracula/highlightjs - * - * Copyright 2016-present, All rights reserved - * - * Code licensed under the MIT license - * - * @author Denis Ciccale - * @author Zeno Rocha - */ - -.hljs { - display: block; - overflow-x: auto; - background: #282a36; -} - -.hljs-built_in, -.hljs-selector-tag, -.hljs-section, -.hljs-link, -.hljs-keyword { - color: rgb(86, 156, 214) !important; -} - -/* -.hljs-keyword { - color: rgb(86, 156, 214); -} - -*/ - -.hljs, -.hljs-subst, -.hljs-tag { - color: #f8f8f2 !important; -} - -.hljs-string, -.hljs-meta, -.hljs-name, -.hljs-attr, -.hljs-symbol, -.hljs-bullet, -.hljs-addition, -.hljs-variable, -.hljs-template-tag, -.hljs-template-variable { - color: rgb(214, 157, 133) !important; -} - -.hljs-title, -.hljs-type { - color: rgb(78, 201, 176) !important; -} - -.hljs-comment, -.hljs-quote, -.hljs-deletion { - color: rgb(87, 166, 74) !important; -} - -.hljs-keyword, -.hljs-selector-tag, -.hljs-literal, -.hljs-title, -.hljs-section, -.hljs-doctag, -.hljs-type, -.hljs-name, -.hljs-strong { - font-weight: bold; -} - -.hljs-literal, -.hljs-number { - color: rgb(181, 206, 168) !important; -} - -.hljs-emphasis { - font-style: italic; -} diff --git a/docs/_template/light-dark-theme/styles/vs2015.css b/docs/_template/light-dark-theme/styles/vs2015.css new file mode 100644 index 000000000..d8c14a046 --- /dev/null +++ b/docs/_template/light-dark-theme/styles/vs2015.css @@ -0,0 +1,115 @@ +/* + * Visual Studio 2015 dark style + * Author: Nicolas LLOBERA + */ + +.hljs { + display: block; + overflow-x: auto; + padding: 0.5em; + background: #282a36; + color: #DCDCDC; +} + +.hljs-keyword, +.hljs-literal, +.hljs-symbol, +.hljs-name { + color: #569CD6; +} +.hljs-link { + color: #569CD6; + text-decoration: underline; +} + +.hljs-built_in, +.hljs-type { + color: #4EC9B0; +} + +.hljs-number, +.hljs-class { + color: #B8D7A3; +} + +.hljs-string, +.hljs-meta-string { + color: #D69D85; +} + +.hljs-regexp, +.hljs-template-tag { + color: #9A5334; +} + +.hljs-subst, +.hljs-function, +.hljs-title, +.hljs-params, +.hljs-formula { + color: #DCDCDC; +} + +.hljs-comment, +.hljs-quote { + color: #57A64A; + font-style: italic; +} + +.hljs-doctag { + color: #608B4E; +} + +.hljs-meta, +.hljs-meta-keyword, +.hljs-tag { + color: #9B9B9B; +} + +.hljs-variable, +.hljs-template-variable { + color: #BD63C5; +} + +.hljs-attr, +.hljs-attribute, +.hljs-builtin-name { + color: #9CDCFE; +} + +.hljs-section { + color: gold; +} + +.hljs-emphasis { + font-style: italic; +} + +.hljs-strong { + font-weight: bold; +} + +/*.hljs-code { + font-family:'Monospace'; +}*/ + +.hljs-bullet, +.hljs-selector-tag, +.hljs-selector-id, +.hljs-selector-class, +.hljs-selector-attr, +.hljs-selector-pseudo { + color: #D7BA7D; +} + +.hljs-addition { + background-color: #144212; + display: inline-block; + width: 100%; +} + +.hljs-deletion { + background-color: #600; + display: inline-block; + width: 100%; +}