1
0
mirror of https://github.com/RyanGreenup/cadmus.git synced 2025-08-31 01:29:48 +02:00

Added CSS Styles to use

This commit is contained in:
Ryan Greenup
2020-07-14 21:39:40 +10:00
parent ff5a9e2cb4
commit 880adb63ce
297 changed files with 59368 additions and 3 deletions

View File

@@ -0,0 +1,247 @@
div.mark-rect {
background: transparent;
border: 5px solid #5768c4;
border-radius: 2px;
position: absolute;
}
#vnote-footer {
width: 100%;
text-align: center;
opacity: 0.2;
margin-top: 3rem;
}
#vnote-footer p {
font-size: 0.8rem;
}
#vnote-footer a {
color: inherit !important;
}
/* Mathjax */
x-eqs {
display: flex;
flex-direction: row;
align-content: space-between;
align-items: center;
}
x-eqs > x-eqn {
width: 100%;
margin-left: 3rem;
}
x-eqs > span {
text-align:right;
}
/* Mathjax */
/* View Image */
.view-image,.view-svg {
transition: 0.3s;
}
.modal-box {
display: none;
position: fixed;
z-index: 1000;
padding-top: 50px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: hidden;
background-color: rgb(68, 68, 68);
background-color: rgba(68, 68, 68, 0.95);
}
.modal-content {
margin: auto;
display: block;
width: auto;
height: auto;
cursor: move;
}
/* Add Animation */
.modal-content {
-webkit-animation-name: zoom;
-webkit-animation-duration: 0.6s;
animation-name: zoom;
animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
from {-webkit-transform:scale(0)}
to {-webkit-transform:scale(1)}
}
@keyframes zoom {
from {transform:scale(0)}
to {transform:scale(1)}
}
/* The Close Button */
span.modal-close {
position: absolute;
z-index: 1000;
top: 15px;
right: 35px;
color: #DADADA;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
span.modal-close:hover,
span.modal-close:focus {
color: #EEEEEE;
text-decoration: none;
cursor: pointer;
}
/* View Image */
/* Print */
@media print {
pre, pre code, td.hljs-ln-code {
white-space: pre-wrap !important;
word-break: break-all !important;
}
code, a {
word-break: break-all !important;
}
div.flowchart-diagram, div.mermaid-diagram, div.plantuml-diagram {
overflow: hidden !important;
}
img {
max-width: 100% !important;
height: auto !important;
}
#vnote-footer {
display: none !important;
}
}
/* Print*/
/* Alert */
.alert {
position: relative;
padding: .75rem 1.25rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: .25rem;
}
.alert-primary {
color: #004085;
background-color: #cce5ff;
border-color: #b8daff;
}
.alert-secondary {
color: #383d41;
background-color: #e2e3e5;
border-color: #d6d8db;
}
.alert-success {
color: #155724;
background-color: #d4edda;
border-color: #c3e6cb;
}
.alert-info {
color: #0c5460;
background-color: #d1ecf1;
border-color: #bee5eb;
}
.alert-warning {
color: #856404;
background-color: #fff3cd;
border-color: #ffeeba;
}
.alert-danger {
color: #721c24;
background-color: #f8d7da;
border-color: #f5c6cb;
}
.alert-light {
color: #818182;
background-color: #fefefe;
border-color: #fdfdfe;
}
.alert-dark {
color: #1b1e21;
background-color: #d6d8d9;
border-color: #c6c8ca;
}
/* Alert */
/* Anchor */
.vnote-anchor {
font-weight: 400;
color: rgba(0,123,255,.5);
transition: color .16s linear;
padding-left: 0.375em;
-webkit-font-smoothing: antialiased;
text-decoration: none;
opacity: 0;
}
.vnote-anchor:hover {
color: rgba(0,123,255,1);
text-decoration: none;
opacity: 1;
}
.vnote-anchor::after {
content: attr(data-anchor-icon);
}
/* Anchor */
/* Button */
.vnote-btn {
position: relative;
display: inline-block;
padding: 6px 12px;
font-size: 13px;
font-weight: 700;
line-height: 20px;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
border: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-appearance: none;
}
.vnote-copy-clipboard-btn {
transition: opacity .3s ease-in-out;
opacity: 0;
padding: 2px 6px;
position: absolute;
top: 5px;
right: 5px;
}
pre:hover .vnote-copy-clipboard-btn {
opacity: 1;
}
pre.vnote-snippet {
position: relative;
}
/* Button */

View File

@@ -0,0 +1,205 @@
*,
*::before,
*::after {
box-sizing: border-box;
}
.container-fluid {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
.col-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
@media (min-width: 768px) {
.col-md-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
}
@media (min-width: 768px) {
.col-md-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
}
@media (min-width: 1200px) {
.col-xl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
}
@media (min-width: 1200px) {
.col-xl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
}
@media (min-width: 768px) {
.pt-md-3, .py-md-3 {
padding-top: 1rem!important;
}
}
@media (min-width: 768px) {
.pb-md-3, .py-md-3 {
padding-bottom: 1rem!important;
}
}
@media (min-width: 768px) {
.pl-md-5, .px-md-5 {
padding-left: 3rem!important;
}
}
.d-none {
display: none!important;
}
@media (min-width: 1200px) {
.d-xl-block {
display: block!important;
}
}
@media (min-width: 768px) {
.d-md-block {
display: block!important;
}
}
.bd-content {
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
order: 0;
}
.bd-toc {
position: -webkit-sticky;
position: sticky;
top: 4rem;
height: calc(100vh - 10rem);
overflow-y: auto;
}
.bd-toc {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
font-size: .875rem;
}
.section-nav {
padding-left: 0;
}
.section-nav ul {
font-size: .875rem;
list-style-type: none;
}
.section-nav li {
font-size: .875rem;
}
.section-nav a {
color: inherit !important;
}
.row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 1200px) {
.flex-xl-nowrap {
flex-wrap: nowrap !important;
}
}
#floating-button {
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
background: #00897B;
position: fixed;
top: .5rem;
right: .5rem;
cursor: pointer;
box-shadow: 0px 2px 5px #666;
}
#floating-button .more {
color: #F5F5F5;
position: absolute;
top: 0;
display: block;
bottom: 0;
left: 0;
right: 0;
text-align: center;
padding: 0;
margin: 0;
line-height: 2.5rem;
font-size: 2rem;
font-family: 'monospace';
font-weight: 300;
}
.hide-none {
display: none !important;
}
.col-expand {
-webkit-box-flex: 0;
-ms-flex: 0 0 100% !important;
flex: 0 0 100% !important;
max-width: 100% !important;
padding-right: 3rem !important;
}
.outline-bold {
font-weight: bolder !important;
}
@media print {
#floating-button {
display: none !important;
}
}

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<g>
<polygon fill="#DADADA" points="128,192 256,320 384,192 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 548 B

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<g>
<polygon fill="#808080" points="128,192 256,320 384,192 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 548 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(-90 256.00000000000006,256) " id="svg_1">
<polygon fill="#DADADA" id="svg_2" points="128,192 256,320 384,192 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 2</title>
<rect stroke="null" fill="#585858" stroke-width="null" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" x="225.3" y="0.100029" width="51" height="281.537138" id="svg_3"/>
<rect fill="#585858" stroke-width="null" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" x="346.499997" y="116.499998" width="51" height="278.999996" id="svg_6" transform="rotate(90 372,256.00000000000006) " stroke="null"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 588 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 2</title>
<rect stroke="null" fill="#585858" stroke-width="null" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" x="225.3" y="0.100029" width="51" height="511.910139" id="svg_3"/>
<rect fill="#585858" stroke-width="null" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" x="346.499997" y="116.499998" width="51" height="278.999996" id="svg_6" transform="rotate(90 372,256.00000000000006) " stroke="null"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 588 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g id="svg_1">
<polygon fill="#DADADA" id="svg_2" points="128,192 256,320 384,192 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 247 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_6" fill-opacity="0" height="299" width="299" y="106.5" x="106.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="30" stroke="#DADADA" fill="#000000"/>
<path stroke-opacity="0" id="svg_3" d="m126,243.24589l27.93756,-27.94743l76.53449,76.52461l127.58052,-127.54102l27.94743,27.92768l-155.52795,155.50821" stroke-width="5" fill="#DADADA" stroke="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 555 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_6" fill-opacity="0" height="299" width="299" y="106.5" x="106.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="30" stroke="#808080" fill="#000000"/>
<path stroke-opacity="0" id="svg_3" d="m126,243.24589l27.93756,-27.94743l76.53449,76.52461l127.58052,-127.54102l27.94743,27.92768l-155.52795,155.50821" stroke-width="5" fill="#808080" stroke="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 555 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_6" fill-opacity="0" height="299" width="299" y="106.5" x="106.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="30" stroke="#DADADA" fill="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 350 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_6" fill-opacity="0" height="299" width="299" y="106.5" x="106.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="30" stroke="#808080" fill="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 350 B

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#DADADA" d="M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4
L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1
c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1
c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 995 B

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#767676" d="M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4
L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1
c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1
c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 995 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="null" id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#DADADA"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 264 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="null" id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#808080"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 264 B

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#DADADA" d="M64,144v304h303.9V144H64z M351.9,432H80V160h271.9V432z"/>
<g>
<polygon style="fill:#DADADA" points="448,64 144,64 144,128 160,128 160,80 432,80 432,352 384,352 384,368 448,368 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 715 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(90 255.99999999999997,256.00000000000006) " id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#DADADA"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 309 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(90 255.99999999999997,256.00000000000006) " id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#808080"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 309 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 2</title>
<rect stroke="null" id="svg_3" height="510.999989" width="51" y="0.100029" x="225.3" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="null" fill="#585858"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 341 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<path stroke-opacity="0" id="svg_3" d="m126,243.24589l27.93756,-27.94743l76.53449,76.52461l127.58052,-127.54102l27.94743,27.92768l-155.52795,155.50821" stroke-width="5" fill="#DADADA" stroke="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 353 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#DADADA" stroke="#000000" stroke-width="20" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" stroke-opacity="0" cx="257.00002" cy="256" r="83.2406" id="svg_11"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 346 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#000000" stroke-width="30" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" fill-opacity="0" cx="256.00001" cy="256.00001" r="142.96561" id="svg_9" stroke="#DADADA"/>
<circle fill="#DADADA" stroke="#000000" stroke-width="20" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" stroke-opacity="0" cx="256.00002" cy="256" r="83.2406" id="svg_11"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 549 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#000000" stroke-width="30" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" fill-opacity="0" cx="256.00001" cy="256.00001" r="142.96561" id="svg_9" stroke="#808080"/>
<circle fill="#808080" stroke="#000000" stroke-width="20" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" stroke-opacity="0" cx="256.00002" cy="256" r="83.2406" id="svg_11"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 549 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#000000" stroke-width="30" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" fill-opacity="0" cx="256.00001" cy="256.00001" r="142.96561" id="svg_9" stroke="#DADADA"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 351 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#000000" stroke-width="30" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" fill-opacity="0" cx="256.00001" cy="256.00001" r="142.96561" id="svg_9" stroke="#808080"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 351 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(-90 256.00000000000006,256) " id="svg_1">
<polygon fill="#DADADA" id="svg_2" points="128,192 256,320 384,192 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(-90 256.00000000000006,256) " id="svg_1">
<polygon fill="#808080" id="svg_2" points="128,192 256,320 384,192 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(180 255.99999999999997,256) " id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#DADADA"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(180 255.99999999999997,256) " id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#808080"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,357 @@
body {
margin: 0 auto;
font-family: "Segoe UI", Helvetica, sans-serif, Tahoma, Arial, Geneva, Georgia, Palatino, "Times New Roman", "Hiragino Sans GB", "冬青黑体", "Microsoft YaHei", "微软雅黑", "Microsoft YaHei UI", "WenQuanYi Micro Hei", "文泉驿雅黑", Dengxian, "等线体", STXihei, "华文细黑", "Liberation Sans", "Droid Sans", NSimSun, "新宋体", SimSun, "宋体";
color: #DADADA;
line-height: 1.5;
padding: 15px;
background: #444444;
font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
color: #E0E0E0;
font-weight: bold;
margin-top: 20px;
margin-bottom: 10px;
padding: 0;
}
p {
padding: 0;
margin-top: 16px;
margin-bottom: 16px;
}
h1 {
font-size: 26px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 22px;
}
h4 {
font-size: 20px;
}
h5 {
font-size: 19px;
}
h6 {
font-size: 18px;
}
a {
color: #61AFEF;
margin: 0;
padding: 0;
vertical-align: baseline;
text-decoration: none;
word-break: break-word;
}
a:hover {
text-decoration: underline;
}
a:visited {
color: #BA68C8;
}
ul, ol {
padding: 0;
padding-left: 24px;
}
li {
line-height: 24px;
}
li ul, li ol {
margin-left: 16px;
}
p, ul, ol {
font-size: 16px;
line-height: 24px;
}
mark {
color: #000000;
background-color: #D8D800;
}
pre {
display: block;
overflow-y: hidden;
overflow-x: auto;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}
code {
font-family: Consolas, Monaco, Monospace, Courier;
color: #98C379;
word-break: break-word;
}
pre code {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #DADADA;
background-color: #4A4A4A;
border-left: .5em solid #865E1B;
line-height: 1.5;
font-family: Consolas, Monaco, Monospace, Courier;
white-space: pre;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}
pre code.markdown-metadata {
border-left: .5em solid #D89F3E;
}
aside {
display: block;
float: right;
width: 390px;
}
blockquote {
color: #BCBCBC;
background-color: #4A4A4A;
border-left: .5em solid #8A8A8A;
padding: 0 1em;
margin-left: 0;
}
blockquote p {
color: #BCBCBC;
}
hr {
display: block;
text-align: left;
margin: 1em 0;
border: none;
height: 2px;
background: #8A8A8A;
}
table {
padding: 0;
margin: 1rem 0.5rem;
border-collapse: collapse;
}
table tr {
border-top: 2px solid #8A8A8A;
margin: 0;
padding: 0;
}
table tr th {
font-weight: bold;
border: 2px solid #8A8A8A;
margin: 0;
padding: 6px 13px;
}
table tr td {
border: 2px solid #8A8A8A;
margin: 0;
padding: 6px 13px;
}
table tr th :first-child, table tr td :first-child {
margin-top: 0;
}
table tr th :last-child, table tr td :last-child {
margin-bottom: 0;
}
div.mermaid-diagram {
margin: 16px 0px 16px 0px;
overflow-y: hidden;
background: #949494;
color: #222222;
}
div.flowchart-diagram {
padding: 0px 5px 0px 5px;
margin: 16px 0px 16px 0px;
width: fit-content;
overflow: hidden;
background: #949494;
color: #222222;
}
div.wavedrom-diagram {
padding: 0px 5px 0px 5px;
margin: 16px 0px 16px 0px;
width: fit-content;
overflow: hidden;
background: #949494;
color: #222222;
}
div.plantuml-diagram {
padding: 5px 5px 0px 5px;
margin: 16px 0px 16px 0px;
width: fit-content;
overflow: hidden;
background: #949494;
color: #222222;
}
.img-package {
text-align: center;
}
img.img-center {
display: block;
margin-left: auto;
margin-right: auto;
}
span.img-caption {
min-width: 20%;
max-width: 80%;
display: inline-block;
padding: 10px;
margin: 0 auto;
border-bottom: 1px solid #767676;
color: #BCBCBC;
text-align: center;
line-height: 1.5;
}
.emoji_zero,.emoji_one,.emoji_two,.emoji_three,.emoji_four,.emoji_five,.emoji_six,.emoji_seven,.emoji_eight,.emoji_nine {
margin-left: 5px;
margin-right: 8px;
}
div.preview-hint {
opacity: 0.5;
margin-top: 30%;
margin-bottom: 30%;
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
}
/* For Highlight.js Line Number */
table.hljs-ln tr {
border: none;
background-color: transparent;
}
table.hljs-ln tr td {
border: none;
background-color: transparent;
}
table.hljs-ln tr td.hljs-ln-numbers {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-align: center;
color: #767676;
border-right: 1px solid #767676;
vertical-align: top;
padding-right: 5px;
white-space: nowrap;
}
table.hljs-ln tr td.hljs-ln-code {
padding-left: 10px;
}
::-webkit-scrollbar {
background-color: #444444;
width: 14px;
height: 14px;
border: none;
}
::-webkit-scrollbar-corner {
background-color: #444444;
}
::-webkit-scrollbar-button {
/* This selector affects the styling of both the up & down and left & right buttons of a scrollbar */
height: 14px;
width: 14px;
background-color: #444444;
}
::-webkit-scrollbar-button:hover {
background-color: #666666;
}
::-webkit-scrollbar-button:active {
background-color: #606060;
}
::-webkit-scrollbar-track {
/* This selector affects the styling of the area in the scrollbar between the two buttons */
background-color: #444444;
}
::-webkit-scrollbar-thumb {
/* This selector affects the styling of draggable element of the scollbar */
border: none;
background-color: #585858;
}
::-webkit-scrollbar-thumb:hover {
background-color: #666666;
}
::-webkit-scrollbar-thumb:active {
background-color: #606060;
}
::-webkit-scrollbar-button:horizontal:increment {
background-image: url(right.svg);
background-repeat: no-repeat;
background-size: contain;
}
::-webkit-scrollbar-button:horizontal:decrement {
background-image: url(left.svg);
background-repeat: no-repeat;
background-size: contain;
}
::-webkit-scrollbar-button:vertical:increment {
background-image: url(down.svg);
background-repeat: no-repeat;
background-size: contain;
}
::-webkit-scrollbar-button:vertical:decrement {
background-image: url(up.svg);
background-repeat: no-repeat;
background-size: contain;
}
::selection {
background: #8CBAE8;
color: #DADADA;
}

View File

@@ -0,0 +1,213 @@
# This is the default markdown styles used for Peg-Markdown-Highlight
# created by Le Tan(tamlokveer@gmail.com).
# For a complete description of the syntax, please refer to the original
# documentation of the style parser
# [The Syntax of PEG Markdown Highlight Stylesheets](http://hasseg.org/peg-markdown-highlight/docs/stylesheet_syntax.html).
# VNote adds some styles in the syntax which will be marked [VNote] in the comment.
#
# Note: Empty lines within a section is NOT allowed.
# Note: Do NOT modify this file directly. Copy it and tune your own style!
editor
# QTextEdit just choose the first available font, so specify the Chinese fonts first
# Do not use "" to quote the name
font-family: Hiragino Sans GB, 冬青黑体, Microsoft YaHei, 微软雅黑, Microsoft YaHei UI, WenQuanYi Micro Hei, 文泉驿雅黑, Dengxian, 等线体, STXihei, 华文细黑, Liberation Sans, Droid Sans, NSimSun, 新宋体, SimSun, 宋体, Verdana, Helvetica, sans-serif, Tahoma, Arial, Geneva, Georgia, Times New Roman
font-size: 12
foreground: dadada
background: 444444
# [VNote] Style for trailing space
trailing-space: 666666
# [VNote] Style for line number
line-number-background: 444444
line-number-foreground: afaf5f
# [VNote] Style for selected word highlight
selected-word-foreground: 222222
selected-word-background: dfdf00
# [VNote] Style for searched word highlight
searched-word-foreground: 222222
searched-word-background: 4db6ac
# [VNote] Style for searched word under cursor highlight
searched-word-cursor-foreground: 222222
searched-word-cursor-background: 66bb6a
# [VNote] Style for incremental searched word highlight
incremental-searched-word-foreground: 222222
incremental-searched-word-background: ce93d8
# [VNote] Style for color column in fenced code block
color-column-background: c9302c
color-column-foreground: eeeeee
# [VNote] Style for preview image line
preview-image-line-foreground: 6f5799
# [VNote] Style for preview image (useful for SVG in dark theme)
preview-image-background: 949494
editor-selection
foreground: dadada
background: 1976d2
editor-current-line
background: 363636
# [VNote] Vim insert mode cursor line background
vim-insert-background: 363636
# [VNote] Vim normal mode cursor line background
vim-normal-background: 545454
# [VNote] Vim visual mode cursor line background
vim-visual-background: 484f5d
# [VNote] Vim replace mode cursor line background
vim-replace-background: 2f3377
H1
foreground: e0e0e0
font-style: bold
font-size: +6
H2
foreground: e0e0e0
font-style: bold
font-size: +5
H3
foreground: e0e0e0
font-style: bold
font-size: +4
H4
foreground: e0e0e0
font-style: bold
font-size: +3
H5
foreground: e0e0e0
font-style: bold
font-size: +2
H6
foreground: e0e0e0
font-style: bold
font-size: +1
HRULE
foreground: dadada
background: 614145
LIST_BULLET
foreground: e37c84
font-style: bold
font-size: +2
LIST_ENUMERATOR
foreground: e37c84
LINK
foreground: 61afef
AUTO_LINK_URL
foreground: 61afef
AUTO_LINK_EMAIL
foreground: 61afef
IMAGE
foreground: 7da8cb
REFERENCE
foreground: 56b6c2
CODE
foreground: 98c379
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
EMPH
foreground: e0e0e0
font-style: italic
STRONG
foreground: e0e0e0
font-style: bold
HTML_ENTITY
foreground: d09a80
HTML
foreground: d09a80
HTMLBLOCK
foreground: d09a80
COMMENT
foreground: 9e9e9e
VERBATIM
foreground: 98c379
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
FENCEDCODEBLOCK
foreground: 98c379
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
# [VNote] Codeblock sylte from HighlightJS (bold, italic, underlined, strikeout, color)
# The last occurence of the same attribute takes effect
# Could specify multiple attribute in one line
hljs-comment: af8787
hljs-quote: af8787
hljs-doctag: ccb24c
hljs-keyword: ccb24c
hljs-formula: ccb24c
hljs-section: e37c84
hljs-name: e37c84
hljs-selector-tag: e37c84
hljs-deletion: e37c84
hljs-subst: e37c84
hljs-literal: 56b6c2
hljs-string: f06292
hljs-regexp: f06292
hljs-addition: f06292
hljs-attribute: f06292
hljs-meta-string: f06292
hljs-built_in: 80cbc4
hljs-attr: ce93db
hljs-variable: ce93db
hljs-template-variable: ce93db
hljs-type: ce93db
hljs-selector-class: ce93db
hljs-selector-attr: ce93db
hljs-selector-pseudo: ce93db
hljs-number: ce93db
hljs-symbol: 84c0f2
hljs-link: underlined, 84c0f2
hljs-bullet: 84c0f2
hljs-meta: 84c0f2
hljs-selector-id: 84c0f2
hljs-title: bold, 84c0f2
hljs-emphasis: italic
hljs-strong: bold
BLOCKQUOTE
foreground: ccb24c
NOTE
foreground: b39ddb
STRIKE
foreground: e57373
font-style: strikeout
FRONTMATTER
foreground: af8787
INLINEEQUATION
foreground: 93d3cc
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
DISPLAYFORMULA
foreground: 93d3cc
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
MARK
foreground: dadada
background: 802090
TABLE
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
TABLEBORDER
foreground: e37c84
background: 4e4e4e

View File

@@ -0,0 +1,395 @@
; File path could be absolute path or relative path (related to this file).
; Use @color_tag to reference a style.
; Fork from [detorte](https://github.com/tamlok/detorte).
; Le Tan (tamlokveer@gmail.com)
[metadata]
qss_file=v_detorte.qss
mdhl_file=v_detorte.mdhl
css_file=v_detorte.css
codeblock_css_file=v_detorte_codeblock.css
mermaid_css_file=v_detorte_mermaid.css
version=15
; This mapping will be used to translate colors when the content of HTML is copied
; without background. You could just specify the foreground colors mapping here.
; It is useful for dark mode theme. '#aabbcc' or 'red' formats are supported.
; col1:col1_new,col2:col2_new
css_color_mapping=#dadada:#222222,#61afef:#0099ff,#98c379:#8e24aa,#bcbcbc:#666666,#8a8a8a:#7a7a7a,#767676:#aaaaaa,#af8787:#767676,#ccb24c:#0000ee,#e37c84:#880000,#56b6c2:#af00d7,#f06292:#bc6060,#80cbc4:#008700,#ce93db:#4d99bf,#84c0f2:#1f7199,#e4e4e4:#222222,#ba68c8:#6a1b9a,#e0e0e0:#222222
[phony]
; Abstract color attributes.
master_fg=#222222
master_bg=#D89F3E
master_light_bg=#DFAF5F
master_dark_bg=#865E1B
master_focus_bg=#D5962e
master_hover_bg=#E2B76F
master_pressed_bg=#C88C28
base_fg=#DADADA
base_bg=#444444
main_fg=@base_fg
main_bg=@base_bg
title_fg=@base_fg
title_bg=@base_bg
disabled_fg=#808080
content_fg=@base_fg
content_bg=@base_bg
border_bg=#585858
separator_bg=#666666
hover_fg=#EEEEEE
hover_bg=#666666
selected_fg=#E4E4E4
selected_bg=#606060
active_fg=@selected_fg
active_bg=@selected_bg
inactive_fg=@selected_fg
inactive_bg=#585858
focus_fg=@hover_fg
focus_bg=@hover_bg
pressed_fg=@base_fg
pressed_bg=#515151
edit_fg=@base_fg
edit_bg=@base_bg
edit_focus_bg=#3A3A3A
edit_focus_border=@master_bg
edit_hover_bg=#494949
edit_hover_border=@master_bg
edit_selection_fg=@edit_fg
edit_selection_bg=#666666
icon_fg=@base_fg
icon_disabled_fg=@disabled_fg
danger_fg=#F5F5F5
danger_bg=#C9302C
danger_focus_bg=#D9534F
danger_hover_bg=#DE6764
danger_pressed_bg=#AC2925
[soft_defined]
; VAvatar.
; The foreground color of the avatar when Captain mode is triggered.
avatar_captain_mode_fg=@master_fg
; The background color of the avatar when Captain mode is triggered.
avatar_captain_mode_bg=@master_bg
; Style of the label in Navigation mode.
navigation_label_fg=@master_fg
navigation_label_bg=@master_bg
; Style of the bubble of VButtonWithWidget.
bubble_fg=@master_fg
bubble_bg=@master_bg
; Icons' foreground.
danger_icon_fg=@danger_bg
item_icon_fg=@icon_fg
title_icon_fg=@icon_fg
; VVimIndicator.
vim_indicator_key_label_fg=@base_fg
vim_indicator_mode_label_fg=@base_fg
vim_indicator_cmd_edit_pending_bg=@selected_bg
; VTabIndicator.
tab_indicator_label_fg=@base_fg
tab_indicator_tag_label_fg=#222222
tab_indicator_tag_label_bg=#ce93db
; Html template.
template_title_flash_light_fg=@master_light_bg
template_title_flash_dark_fg=@master_bg
; Search hit items in list or tree view.
search_hit_item_fg=@selected_fg
search_hit_item_bg=@master_dark_bg
; Universal Entry CMD Edit border color
ue_cmd_busy_border=#3F51B5
ue_cmd_fail_border=@danger_bg
; VListWidget/VTreeWidget separator.
item_separator_fg=@master_light_bg
item_separator_bg=@separator_bg
[widgets]
; Widget color attributes.
; QWidget.
widget_fg=@base_fg
; Separator of dock widgets.
dock_separator_bg=@border_bg
dock_separator_hover_bg=@hover_bg
dock_separator_pressed_bg=@pressed_bg
; Menubar.
menubar_bg=@main_bg
menubar_fg=@main_fg
menubar_item_selected_bg=@selected_bg
; Menu.
menu_bg=@base_bg
menu_fg=@base_fg
menu_border_bg=@border_bg
menu_item_disabled_fg=@disabled_fg
menu_item_selected_fg=@selected_fg
menu_item_selected_bg=@selected_bg
menu_separator_bg=@separator_bg
menu_icon_fg=@icon_fg
menu_icon_danger_fg=@danger_icon_fg
; Tooltip.
tooltip_bg=@master_bg
tooltip_fg=@master_fg
; Toolbar.
toolbar_bg=@main_bg
toolbar_separator_bg=@separator_bg
toolbar_extension_bg=@base_fg
toolbutton_hover_bg=@hover_bg
toolbutton_pressed_bg=@pressed_bg
toolbutton_checked_bg=@selected_bg
toolbutton_icon_fg=@icon_fg
toolbutton_icon_danger_fg=@danger_icon_fg
buttonmenuitem_decoration_text_fg=@master_light_bg
; Toolbox.
toolbox_icon_fg=@master_bg
toolbox_icon_active_fg=@master_fg
toolbox_title_border=@master_bg
; Dockwidget.
dockwidget_bg=@base_bg
dockwidget_title_fg=@title_fg
dockwidget_title_bg=@title_bg
dockwidget_button_hover_bg=@hover_bg
; PushButton.
pushbutton_fg=@base_fg
pushbutton_bg=transparent
pushbutton_border=@border_bg
pushbutton_pressed_bg=@pressed_bg
pushbutton_focus_bg=@focus_bg
pushbutton_checked_bg=@selected_bg
pushbutton_hover_bg=@hover_bg
pushbutton_default_border=@master_bg
pushbutton_disabled_fg=@disabled_fg
pushbutton_disabled_bg=@pushbutton_bg
pushbutton_specialbtn_fg=@master_fg
pushbutton_specialbtn_bg=@master_bg
pushbutton_specialbtn_focus_bg=@master_focus_bg
pushbutton_specialbtn_hover_bg=@master_hover_bg
pushbutton_specialbtn_checked_bg=@master_focus_bg
pushbutton_specialbtn_pressed_bg=@master_pressed_bg
pushbutton_titlebtn_bg=@title_bg
pushbutton_dangerbtn_fg=@danger_fg
pushbutton_dangerbtn_bg=@danger_bg
pushbutton_dangerbtn_hover_bg=@danger_hover_bg
pushbutton_dangerbtn_focus_bg=@danger_focus_bg
pushbutton_dangerbtn_pressed_bg=@danger_pressed_bg
pushbutton_toolboxbtn_active_fg=@master_fg
pushbutton_toolboxbtn_active_bg=@master_bg
pushbutton_toolboxbtn_active_focus_bg=@master_focus_bg
pushbutton_toolboxbtn_active_hover_bg=@master_hover_bg
pushbutton_toolboxbtn_active_pressed_bg=@master_pressed_bg
button_icon_fg=@icon_fg
button_icon_danger_fg=@danger_icon_fg
; ComboBox.
combobox_border=@border_bg
combobox_fg=@content_fg
combobox_bg=@content_bg
combobox_disabled_fg=@disabled_fg
combobox_view_border=@border_bg
combobox_view_selected_bg=@selected_bg
combobox_view_selected_fg=@selected_fg
combobox_view_item_hover_fg=@hover_fg
combobox_view_item_hover_bg=@hover_bg
combobox_focus_bg=@edit_focus_bg
combobox_focus_border=@edit_focus_border
combobox_hover_bg=@edit_hover_bg
combobox_hover_border=@edit_hover_border
combobox_item_icon_fg=@item_icon_fg
combobox_notebookselector_fg=@master_bg
combobox_notebookselector_bg=@combobox_bg
combobox_notebookselector_border=@master_bg
combobox_notebookselector_hover_fg=@master_bg
combobox_notebookselector_hover_bg=@hover_bg
combobox_notebookselector_focus_fg=@master_bg
combobox_notebookselector_focus_bg=@focus_bg
; Label.
label_fg=@base_fg
label_titlelabel_fg=@title_fg
label_titlelabel_bg=@title_bg
; LineEdit.
lineedit_border=@border_bg
lineedit_fg=@edit_fg
lineedit_bg=@edit_bg
lineedit_disabled_fg=@disabled_fg
lineedit_focus_bg=@edit_focus_bg
lineedit_focus_border=@edit_focus_border
lineedit_hover_bg=@edit_hover_bg
lineedit_hover_border=@edit_hover_border
lineedit_selection_fg=@edit_selection_fg
lineedit_selection_bg=@edit_selection_bg
; TabWidget.
tabwidget_pane_border=@selected_bg
; TabBar.
tabbar_fg=@base_fg
tabbar_bg=@base_bg
tabbar_border=@border_bg
tabbar_selected_fg=@edit_fg
tabbar_selected_bg=@edit_bg
tabbar_selected_border=@border_bg
tabbar_hover_fg=@hover_fg
tabbar_hover_bg=@hover_bg
tabbar_icon_fg=@icon_fg
tabbar_icon_special_fg=@danger_bg
; SelectorItem.
selectoritem_border=@master_bg
selectoritem_fg=@base_fg
selectoritem_bg=@base_bg
; InsertSelector.
insertselector_bg=@base_bg
; TreeView.
treeview_fg=@content_fg
treeview_bg=@content_bg
treeview_item_border_bg=@border_bg
treeview_item_hover_fg=@hover_fg
treeview_item_hover_bg=@hover_bg
treeview_item_selected_fg=@selected_fg
treeview_item_selected_bg=@selected_bg
treeview_item_selected_avtive_fg=@active_fg
treeview_item_selected_avtive_bg=@active_bg
treeview_item_selected_inactive_fg=@inactive_fg
treeview_item_selected_inactive_bg=@inactive_bg
treeview_item_icon_fg=@item_icon_fg
; ListView.
listview_fg=@content_fg
listview_bg=@content_bg
listview_item_hover_fg=@hover_fg
listview_item_hover_bg=@hover_bg
listview_item_selected_fg=@selected_fg
listview_item_selected_bg=@selected_bg
listview_item_selected_avtive_fg=@active_fg
listview_item_selected_avtive_bg=@active_bg
listview_item_selected_inactive_fg=@inactive_fg
listview_item_selected_inactive_bg=@inactive_bg
; QAbstractItemView for TextEdit Completer.
abstractitemview_textedit_fg=#000000
abstractitemview_textedit_bg=#BCBCBC
abstractitemview_textedit_item_hover_fg=@abstractitemview_textedit_fg
abstractitemview_textedit_item_hover_bg=@master_hover_bg
abstractitemview_textedit_item_selected_fg=@abstractitemview_textedit_fg
abstractitemview_textedit_item_selected_bg=@master_light_bg
abstractitemview_textedit_item_selected_avtive_fg=@abstractitemview_textedit_fg
abstractitemview_textedit_item_selected_avtive_bg=@master_focus_bg
abstractitemview_textedit_item_selected_inactive_fg=@inactive_fg
abstractitemview_textedit_item_selected_inactive_bg=@inactive_bg
; Splitter.
splitter_handle_bg=@border_bg
splitter_handle_pressed_bg=@pressed_bg
; StatusBar.
statusbar_fg=@main_fg
statusbar_bg=@main_bg
statusbar_border=@border_bg
; ScrollBar.
scrollbar_bg=@base_bg
scrollbar_page_bg=transparent
scrollbar_handle_bg=#585858
scrollbar_handle_hover_bg=@hover_bg
scrollbar_handle_pressed_bg=@selected_bg
; VEditWindow.
editwindow_corner_icon_fg=@master_bg
editwindow_corner_icon_inactive_fg=@icon_fg
; CheckBox.
checkbox_disabled_fg=@disabled_fg
checkbox_indicator_focus_bg=@focus_bg
checkbox_indicator_hover_bg=@hover_bg
checkbox_indicator_pressed_bg=@pressed_bg
; RadioButton.
radiobutton_disabled_fg=@disabled_fg
radiobutton_indicator_focus_bg=@focus_bg
radiobutton_indicator_hover_bg=@hover_bg
radiobutton_indicator_pressed_bg=@pressed_bg
; SpinBox.
spinbox_fg=@edit_fg
spinbox_bg=@edit_bg
spinbox_border=@border_bg
spinbox_selection_fg=@edit_selection_fg
spinbox_selection_bg=@edit_selection_bg
spinbox_focus_border=@edit_focus_border
spinbox_focus_bg=@edit_focus_bg
spinbox_hover_border=@edit_hover_border
spinbox_hover_bg=@edit_hover_bg
spinbox_button_hover_bg=@hover_bg
spinbox_button_pressed_bg=@pressed_bg
; HeaderView.
headerview_bg=#515151
headerview_fg=@base_fg
headerview_border=#C2BFA5
headerview_checked_fg=@selected_fg
headerview_checked_bg=@selected_bg
; ProgressBar.
progressbar_bg=@edit_bg
progressbar_border_bg=@border_bg
progressbar_chunk_bg=@master_dark_bg
universalentry_bg=@base_bg
universalentry_border_bg=@border_bg
doublerowitem_second_row_label_fg=#9E9E9E
; GroupBox.
groupbox_border=@border_bg
groupbox_title_fg=@base_fg
; Slider.
slider_border_bg=@border_bg
slider_groove_bg=@edit_bg
slider_handle_bg=@master_bg
slider_subpage_bg=@master_dark_bg

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,75 @@
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #dadada;
background: #4a4a4a;
}
.hljs-comment,
.hljs-quote {
color: #af8787;
}
.hljs-doctag,
.hljs-keyword,
.hljs-formula {
color: #ccb24c;
}
.hljs-section,
.hljs-name,
.hljs-selector-tag,
.hljs-deletion,
.hljs-subst {
color: #e37c84;
}
.hljs-literal {
color: #56b6c2;
}
.hljs-string,
.hljs-regexp,
.hljs-addition,
.hljs-attribute,
.hljs-meta-string {
color: #f06292;
}
.hljs-built_in,
.hljs-class .hljs-title {
color: #80cbc4;
}
.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-type,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-number {
color: #ce93db;
}
.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-title {
color: #84c0f2;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
.hljs-link {
text-decoration: underline;
}

View File

@@ -0,0 +1,416 @@
/* Flowchart variables */
/* Sequence Diagram variables */
/* Gantt chart variables */
.mermaid-diagram .mermaid .label {
font-family: 'trebuchet ms', verdana, arial;
color: #333;
}
.mermaid-diagram .node rect,
.mermaid-diagram .node circle,
.mermaid-diagram .node ellipse,
.mermaid-diagram .node polygon {
fill: #cde498;
stroke: #13540c;
stroke-width: 1px;
}
.mermaid-diagram .edgePath .path {
stroke: green;
stroke-width: 1.5px;
}
.mermaid-diagram .edgeLabel {
background-color: #e8e8e8;
}
.mermaid-diagram .cluster rect {
fill: #cdffb2 !important;
rx: 4 !important;
stroke: #6eaa49 !important;
stroke-width: 1px !important;
}
.mermaid-diagram .cluster text {
fill: #333;
}
.mermaid-diagram .actor {
stroke: #13540c;
fill: #cde498;
}
.mermaid-diagram text.actor {
fill: black;
stroke: none;
}
.mermaid-diagram .actor-line {
stroke: blue;
}
.mermaid-diagram .messageLine0 {
stroke-width: 1.5;
stroke-dasharray: "2 2";
marker-end: "url(#arrowhead)";
stroke: #333;
}
.mermaid-diagram .messageLine1 {
stroke-width: 1.5;
stroke-dasharray: "2 2";
stroke: #333;
}
.mermaid-diagram #arrowhead {
fill: #333;
}
.mermaid-diagram #crosshead path {
fill: #333 !important;
stroke: #333 !important;
}
.mermaid-diagram .messageText {
fill: #333;
stroke: none;
}
.mermaid-diagram .labelBox {
stroke: #326932;
fill: #cde498;
}
.mermaid-diagram .labelText {
fill: black;
stroke: none;
}
.mermaid-diagram .loopText {
fill: black;
stroke: none;
}
.mermaid-diagram .loopLine {
stroke-width: 2;
stroke-dasharray: "2 2";
marker-end: "url(#arrowhead)";
stroke: #326932;
}
.mermaid-diagram .note {
stroke: #6eaa49;
fill: #fff5ad;
}
.mermaid-diagram .noteText {
fill: black;
stroke: none;
font-family: 'trebuchet ms', verdana, arial;
font-size: 14px;
}
/** Section styling */
.mermaid-diagram .section {
stroke: none;
opacity: 0.2;
}
.mermaid-diagram .section0 {
fill: #6eaa49;
}
.mermaid-diagram .section2 {
fill: #6eaa49;
}
.mermaid-diagram .section1,
.mermaid-diagram .section3 {
fill: white;
opacity: 0.2;
}
.mermaid-diagram .sectionTitle0 {
fill: #333;
}
.mermaid-diagram .sectionTitle1 {
fill: #333;
}
.mermaid-diagram .sectionTitle2 {
fill: #333;
}
.mermaid-diagram .sectionTitle3 {
fill: #333;
}
.mermaid-diagram .sectionTitle {
text-anchor: start;
font-size: 11px;
text-height: 14px;
}
/* Grid and axis */
.mermaid-diagram .grid .tick {
stroke: lightblue;
opacity: 0.3;
shape-rendering: crispEdges;
}
.mermaid-diagram .grid path {
stroke-width: 0;
}
/* Today line */
.mermaid-diagram .today {
fill: none;
stroke: red;
stroke-width: 2px;
}
/* Task styling */
/* Default task */
.mermaid-diagram .task {
stroke-width: 2;
}
.mermaid-diagram .taskText {
text-anchor: middle;
font-size: 11px;
}
.mermaid-diagram .taskTextOutsideRight {
fill: black;
text-anchor: start;
font-size: 11px;
}
.mermaid-diagram .taskTextOutsideLeft {
fill: black;
text-anchor: end;
font-size: 11px;
}
/* Specific task settings for the sections*/
.mermaid-diagram .taskText0,
.mermaid-diagram .taskText1,
.mermaid-diagram .taskText2,
.mermaid-diagram .taskText3 {
fill: white;
}
.mermaid-diagram .task0,
.mermaid-diagram .task1,
.mermaid-diagram .task2,
.mermaid-diagram .task3 {
fill: #487e3a;
stroke: #13540c;
}
.mermaid-diagram .taskTextOutside0,
.mermaid-diagram .taskTextOutside2 {
fill: black;
}
.mermaid-diagram .taskTextOutside1,
.mermaid-diagram .taskTextOutside3 {
fill: black;
}
/* Active task */
.mermaid-diagram .active0,
.mermaid-diagram .active1,
.mermaid-diagram .active2,
.mermaid-diagram .active3 {
fill: #cde498;
stroke: #13540c;
}
.mermaid-diagram .activeText0,
.mermaid-diagram .activeText1,
.mermaid-diagram .activeText2,
.mermaid-diagram .activeText3 {
fill: black !important;
}
/* Completed task */
.mermaid-diagram .done0,
.mermaid-diagram .done1,
.mermaid-diagram .done2,
.mermaid-diagram .done3 {
stroke: blue;
fill: lightblue;
stroke-width: 2;
}
.mermaid-diagram .doneText0,
.mermaid-diagram .doneText1,
.mermaid-diagram .doneText2,
.mermaid-diagram .doneText3 {
fill: black !important;
}
/* Tasks on the critical line */
.mermaid-diagram .crit0,
.mermaid-diagram .crit1,
.mermaid-diagram .crit2,
.mermaid-diagram .crit3 {
stroke: #ff8888;
fill: red;
stroke-width: 2;
}
.mermaid-diagram .activeCrit0,
.mermaid-diagram .activeCrit1,
.mermaid-diagram .activeCrit2,
.mermaid-diagram .activeCrit3 {
stroke: #ff8888;
fill: #cde498;
stroke-width: 2;
}
.mermaid-diagram .doneCrit0,
.mermaid-diagram .doneCrit1,
.mermaid-diagram .doneCrit2,
.mermaid-diagram .doneCrit3 {
stroke: #ff8888;
fill: lightblue;
stroke-width: 2;
cursor: pointer;
shape-rendering: crispEdges;
}
.mermaid-diagram .doneCritText0,
.mermaid-diagram .doneCritText1,
.mermaid-diagram .doneCritText2,
.mermaid-diagram .doneCritText3 {
fill: black !important;
}
.mermaid-diagram .activeCritText0,
.mermaid-diagram .activeCritText1,
.mermaid-diagram .activeCritText2,
.mermaid-diagram .activeCritText3 {
fill: black !important;
}
.mermaid-diagram .titleText {
text-anchor: middle;
font-size: 18px;
fill: black;
}
.mermaid-diagram g.classGroup text {
fill: #13540c;
stroke: none;
font-family: 'trebuchet ms', verdana, arial;
font-size: 14px;
}
.mermaid-diagram g.classGroup rect {
fill: #cde498;
stroke: #13540c;
}
.mermaid-diagram g.classGroup line {
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram svg .classLabel .box {
stroke: none;
stroke-width: 0;
fill: #cde498;
opacity: 0.5;
}
.mermaid-diagram svg .classLabel .label {
fill: #13540c;
}
.mermaid-diagram .relation {
stroke: #13540c;
stroke-width: 1;
fill: none;
}
.mermaid-diagram .composition {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #compositionStart {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #compositionEnd {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram .aggregation {
fill: #cde498;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #aggregationStart {
fill: #cde498;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #aggregationEnd {
fill: #cde498;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #dependencyStart {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #dependencyEnd {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #extensionStart {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #extensionEnd {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram .node text {
font-family: 'trebuchet ms', verdana, arial;
font-size: 14px;
}
.mermaid-diagram div.mermaidTooltip {
position: absolute;
text-align: center;
max-width: 200px;
padding: 2px;
font-family: 'trebuchet ms', verdana, arial;
font-size: 12px;
background: #cdffb2;
border: 1px solid #6eaa49;
border-radius: 2px;
pointer-events: none;
z-index: 100;
}

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<g>
<polygon fill="#9EA5B4" points="128,192 256,320 384,192 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 548 B

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<g>
<polygon fill="#4D5765" points="128,192 256,320 384,192 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 548 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(-90 256.00000000000006,256) " id="svg_1">
<polygon fill="#9EA5B4" id="svg_2" points="128,192 256,320 384,192 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g id="svg_1">
<polygon fill="#9EA5B4" id="svg_2" points="128,192 256,320 384,192 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 247 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_6" fill-opacity="0" height="299" width="299" y="106.5" x="106.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="30" stroke="#9EA5B4" fill="#000000"/>
<path stroke-opacity="0" id="svg_3" d="m126,243.24589l27.93756,-27.94743l76.53449,76.52461l127.58052,-127.54102l27.94743,27.92768l-155.52795,155.50821" stroke-width="5" fill="#9EA5B4" stroke="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 555 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_6" fill-opacity="0" height="299" width="299" y="106.5" x="106.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="30" stroke="#4D5765" fill="#000000"/>
<path stroke-opacity="0" id="svg_3" d="m126,243.24589l27.93756,-27.94743l76.53449,76.52461l127.58052,-127.54102l27.94743,27.92768l-155.52795,155.50821" stroke-width="5" fill="#4D5765" stroke="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 555 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_6" fill-opacity="0" height="299" width="299" y="106.5" x="106.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="30" stroke="#9EA5B4" fill="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 350 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_6" fill-opacity="0" height="299" width="299" y="106.5" x="106.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="30" stroke="#4D5765" fill="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 350 B

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#9EA5B4" d="M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4
L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1
c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1
c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 995 B

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#636D81" d="M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4
L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1
c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1
c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 995 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="null" id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#9EA5B4"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 264 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="null" id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#4D5765"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 264 B

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#9EA5B4" d="M64,144v304h303.9V144H64z M351.9,432H80V160h271.9V432z"/>
<g>
<polygon style="fill:#9EA5B4" points="448,64 144,64 144,128 160,128 160,80 432,80 432,352 384,352 384,368 448,368 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 715 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(90 255.99999999999997,256.00000000000006) " id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#9EA5B4"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 309 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(90 255.99999999999997,256.00000000000006) " id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#4D5765"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 309 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<path stroke-opacity="0" id="svg_3" d="m126,243.24589l27.93756,-27.94743l76.53449,76.52461l127.58052,-127.54102l27.94743,27.92768l-155.52795,155.50821" stroke-width="5" fill="#9EA5B4" stroke="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 353 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#9EA5B4" stroke="#000000" stroke-width="20" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" stroke-opacity="0" cx="257.00002" cy="256" r="83.2406" id="svg_11"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 346 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#000000" stroke-width="30" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" fill-opacity="0" cx="256.00001" cy="256.00001" r="142.96561" id="svg_9" stroke="#9EA5B4"/>
<circle fill="#9EA5B4" stroke="#000000" stroke-width="20" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" stroke-opacity="0" cx="256.00002" cy="256" r="83.2406" id="svg_11"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 549 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#000000" stroke-width="30" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" fill-opacity="0" cx="256.00001" cy="256.00001" r="142.96561" id="svg_9" stroke="#4D5765"/>
<circle fill="#4D5765" stroke="#000000" stroke-width="20" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" stroke-opacity="0" cx="256.00002" cy="256" r="83.2406" id="svg_11"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 549 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#000000" stroke-width="30" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" fill-opacity="0" cx="256.00001" cy="256.00001" r="142.96561" id="svg_9" stroke="#9EA5B4"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 351 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#000000" stroke-width="30" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" fill-opacity="0" cx="256.00001" cy="256.00001" r="142.96561" id="svg_9" stroke="#4D5765"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 351 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(-90 256.00000000000006,256) " id="svg_1">
<polygon fill="#9EA5B4" id="svg_2" points="128,192 256,320 384,192 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(-90 256.00000000000006,256) " id="svg_1">
<polygon fill="#4D5765" id="svg_2" points="128,192 256,320 384,192 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(180 255.99999999999997,256) " id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#9EA5B4"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(180 255.99999999999997,256) " id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#4D5765"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,355 @@
body {
margin: 0 auto;
font-family: "Segoe UI", Helvetica, sans-serif, Tahoma, Arial, Geneva, Georgia, Palatino, "Times New Roman", "Hiragino Sans GB", "冬青黑体", "Microsoft YaHei", "微软雅黑", "Microsoft YaHei UI", "WenQuanYi Micro Hei", "文泉驿雅黑", Dengxian, "等线体", STXihei, "华文细黑", "Liberation Sans", "Droid Sans", NSimSun, "新宋体", SimSun, "宋体";
color: #ABB2BF;
line-height: 1.5;
padding: 15px;
background: #282C34;
font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
color: #E06C75;
font-weight: bold;
margin-top: 20px;
margin-bottom: 10px;
padding: 0;
}
p {
padding: 0;
margin-top: 16px;
margin-bottom: 16px;
}
h1 {
font-size: 26px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 22px;
}
h4 {
font-size: 20px;
}
h5 {
font-size: 19px;
}
h6 {
font-size: 18px;
}
a {
color: #61AFEF;
margin: 0;
padding: 0;
vertical-align: baseline;
text-decoration: none;
word-break: break-word;
}
a:hover {
text-decoration: underline;
}
a:visited {
color: #BA68C8;
}
ul, ol {
padding: 0;
padding-left: 24px;
}
li {
line-height: 24px;
}
li ul, li ol {
margin-left: 16px;
}
p, ul, ol {
font-size: 16px;
line-height: 24px;
}
mark {
color: #000000;
background-color: #C4C400;
}
pre {
display: block;
overflow-y: hidden;
overflow-x: auto;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}
code {
font-family: Consolas, Monaco, Monospace, Courier;
color: #98C379;
word-break: break-word;
}
pre code {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #98C379;
background-color: #343A45;
line-height: 1.5;
font-family: Consolas, Monaco, Monospace, Courier;
white-space: pre;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}
pre code.markdown-metadata {
border-left: .5em solid #3F51B5;
}
aside {
display: block;
float: right;
width: 390px;
}
blockquote {
color: #5C6370;
border-left: .5em solid #5C6370;
padding: 0 1em;
margin-left: 0;
}
blockquote p {
color: #5C6370;
}
hr {
display: block;
text-align: left;
margin: 1em 0;
border: none;
height: 2px;
background: #373E47;
}
table {
padding: 0;
margin: 1rem 0.5rem;
border-collapse: collapse;
}
table tr {
border-top: 2px solid #373E47;
margin: 0;
padding: 0;
}
table tr th {
font-weight: bold;
border: 2px solid #373E47;
margin: 0;
padding: 6px 13px;
}
table tr td {
border: 2px solid #373E47;
margin: 0;
padding: 6px 13px;
}
table tr th :first-child, table tr td :first-child {
margin-top: 0;
}
table tr th :last-child, table tr td :last-child {
margin-bottom: 0;
}
div.mermaid-diagram {
margin: 16px 0px 16px 0px;
overflow-y: hidden;
background: #B0BEC5;
color: #6C6C6C;
}
div.flowchart-diagram {
padding: 0px 5px 0px 5px;
margin: 16px 0px 16px 0px;
width: fit-content;
overflow: hidden;
background: #B0BEC5;
color: #6C6C6C;
}
div.wavedrom-diagram {
padding: 0px 5px 0px 5px;
margin: 16px 0px 16px 0px;
width: fit-content;
overflow: hidden;
background: #B0BEC5;
color: #6C6C6C;
}
div.plantuml-diagram {
padding: 5px 5px 0px 5px;
margin: 16px 0px 16px 0px;
width: fit-content;
overflow: hidden;
background: #B0BEC5;
color: #6C6C6C;
}
.img-package {
text-align: center;
}
img.img-center {
display: block;
margin-left: auto;
margin-right: auto;
}
span.img-caption {
min-width: 20%;
max-width: 80%;
display: inline-block;
padding: 10px;
margin: 0 auto;
border-bottom: 1px solid #373E47;
color: #ABB2BF;
text-align: center;
line-height: 1.5;
}
.emoji_zero,.emoji_one,.emoji_two,.emoji_three,.emoji_four,.emoji_five,.emoji_six,.emoji_seven,.emoji_eight,.emoji_nine {
margin-left: 5px;
margin-right: 8px;
}
div.preview-hint {
opacity: 0.5;
margin-top: 30%;
margin-bottom: 30%;
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
}
/* For Highlight.js Line Number */
table.hljs-ln tr {
border: none;
background-color: transparent;
}
table.hljs-ln tr td {
border: none;
background-color: transparent;
}
table.hljs-ln tr td.hljs-ln-numbers {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-align: center;
color: #5C6370;
border-right: 1px solid #373E47;
vertical-align: top;
padding-right: 5px;
white-space: nowrap;
}
table.hljs-ln tr td.hljs-ln-code {
padding-left: 10px;
}
::-webkit-scrollbar {
background-color: #21252B;
width: 14px;
height: 14px;
border: none;
}
::-webkit-scrollbar-corner {
background-color: #21252B;
}
::-webkit-scrollbar-button {
/* This selector affects the styling of both the up & down and left & right buttons of a scrollbar */
height: 14px;
width: 14px;
background-color: #21252B;
}
::-webkit-scrollbar-button:hover {
background-color: #424A56;
}
::-webkit-scrollbar-button:active {
background-color: #31363F;
}
::-webkit-scrollbar-track {
/* This selector affects the styling of the area in the scrollbar between the two buttons */
background-color: #21252B;
}
::-webkit-scrollbar-thumb {
/* This selector affects the styling of draggable element of the scollbar */
border: none;
background-color: #353B45;
}
::-webkit-scrollbar-thumb:hover {
background-color: #424A56;
}
::-webkit-scrollbar-thumb:active {
background-color: #31363F;
}
::-webkit-scrollbar-button:horizontal:increment {
background-image: url(right.svg);
background-repeat: no-repeat;
background-size: contain;
}
::-webkit-scrollbar-button:horizontal:decrement {
background-image: url(left.svg);
background-repeat: no-repeat;
background-size: contain;
}
::-webkit-scrollbar-button:vertical:increment {
background-image: url(down.svg);
background-repeat: no-repeat;
background-size: contain;
}
::-webkit-scrollbar-button:vertical:decrement {
background-image: url(up.svg);
background-repeat: no-repeat;
background-size: contain;
}
::selection {
background: #8CBAE8;
color: #D0D0D0;
}

View File

@@ -0,0 +1,212 @@
# This is the default markdown styles used for Peg-Markdown-Highlight
# created by Le Tan(tamlokveer@gmail.com).
# For a complete description of the syntax, please refer to the original
# documentation of the style parser
# [The Syntax of PEG Markdown Highlight Stylesheets](http://hasseg.org/peg-markdown-highlight/docs/stylesheet_syntax.html).
# VNote adds some styles in the syntax which will be marked [VNote] in the comment.
#
# Note: Empty lines within a section is NOT allowed.
# Note: Do NOT modify this file directly. Copy it and tune your own style!
editor
# QTextEdit just choose the first available font, so specify the Chinese fonts first
# Do not use "" to quote the name
font-family: Hiragino Sans GB, 冬青黑体, Microsoft YaHei, 微软雅黑, Microsoft YaHei UI, WenQuanYi Micro Hei, 文泉驿雅黑, Dengxian, 等线体, STXihei, 华文细黑, Liberation Sans, Droid Sans, NSimSun, 新宋体, SimSun, 宋体, Verdana, Helvetica, sans-serif, Tahoma, Arial, Geneva, Georgia, Times New Roman
font-size: 12
foreground: abb2bf
background: 282c34
# [VNote] Style for trailing space
trailing-space: 636d81
# [VNote] Style for line number
line-number-background: 2c313a
line-number-foreground: 6e7686
# [VNote] Style for selected word highlight
selected-word-foreground: 222222
selected-word-background: dfdf00
# [VNote] Style for searched word highlight
searched-word-foreground: 222222
searched-word-background: 4db6ac
# [VNote] Style for searched word under cursor highlight
searched-word-cursor-foreground: 222222
searched-word-cursor-background: 66bb6a
# [VNote] Style for incremental searched word highlight
incremental-searched-word-foreground: 222222
incremental-searched-word-background: ce93d8
# [VNote] Style for color column in fenced code block
color-column-background: c9302c
color-column-foreground: eeeeee
# [VNote] Style for preview image line
preview-image-line-foreground: 6f5799
# [VNote] Style for preview image (useful for SVG in dark theme)
preview-image-background: b0bec5
editor-selection
foreground: bcbcbc
background: 1976d2
editor-current-line
background: 353d49
# [VNote] Vim insert mode cursor line background
vim-insert-background: 353d49
# [VNote] Vim normal mode cursor line background
vim-normal-background: 373c47
# [VNote] Vim visual mode cursor line background
vim-visual-background: 0d47a1
# [VNote] Vim replace mode cursor line background
vim-replace-background: 2f3377
H1
foreground: e06c75
font-style: bold
font-size: +6
H2
foreground: e06c75
font-style: bold
font-size: +5
H3
foreground: e06c75
font-style: bold
font-size: +4
H4
foreground: e06c75
font-style: bold
font-size: +3
H5
foreground: e06c75
font-style: bold
font-size: +2
H6
foreground: e06c75
font-style: bold
font-size: +1
HRULE
foreground: abb2bf
background: 493134
LIST_BULLET
foreground: e06c75
font-style: bold
font-size: +2
LIST_ENUMERATOR
foreground: e06c75
LINK
foreground: 61afef
AUTO_LINK_URL
foreground: 61afef
AUTO_LINK_EMAIL
foreground: 61afef
IMAGE
foreground: 4883b3
REFERENCE
foreground: 56b6c2
CODE
foreground: 98c379
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
EMPH
font-style: italic
STRONG
font-style: bold
HTML_ENTITY
foreground: c07855
HTML
foreground: c07855
HTMLBLOCK
foreground: c07855
COMMENT
foreground: 6e7686
VERBATIM
foreground: 98c379
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
FENCEDCODEBLOCK
foreground: 98c379
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
# [VNote] Codeblock sylte from HighlightJS (bold, italic, underlined, strikeout, color)
# The last occurence of the same attribute takes effect
# Could specify multiple attribute in one line
hljs-comment: 6e7686
hljs-quote: 6e7686
hljs-doctag: c678dd
hljs-keyword: c678dd
hljs-formula: c678dd
hljs-section: e06c75
hljs-name: e06c75
hljs-selector-tag: e06c75
hljs-deletion: e06c75
hljs-subst: e06c75
hljs-literal: 56b6c2
hljs-string: 98c379
hljs-regexp: 98c379
hljs-addition: 98c379
hljs-attribute: 98c379
hljs-meta-string: 98c379
hljs-built_in: e6c07b
hljs-class: e6c07b
hljs-attr: d19a66
hljs-variable: d19a66
hljs-template-variable: d19a66
hljs-type: d19a66
hljs-selector-class: d19a66
hljs-selector-attr: d19a66
hljs-selector-pseudo: d19a66
hljs-number: d19a66
hljs-symbol: 61aeee
hljs-link: underlined, 61aeee
hljs-bullet: 61aeee
hljs-meta: 61aeee
hljs-selector-id: 61aeee
hljs-title: bold, 61aeee
hljs-emphasis: italic
hljs-strong: bold
BLOCKQUOTE
foreground: 6e7686
NOTE
foreground: 9575cd
STRIKE
foreground: e57373
font-style: strikeout
FRONTMATTER
foreground: 6e7686
INLINEEQUATION
foreground: 4db6ac
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
DISPLAYFORMULA
foreground: 4db6ac
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
MARK
foreground: abb2bf
background: 551560
TABLE
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
TABLEBORDER
foreground: e06c75
background: 393f4a

View File

@@ -0,0 +1,393 @@
; File path could be absolute path or relative path (related to this file).
; Use @color_tag to reference a style.
[metadata]
qss_file=v_moonlight.qss
mdhl_file=v_moonlight.mdhl
css_file=v_moonlight.css
codeblock_css_file=v_moonlight_codeblock.css
mermaid_css_file=v_moonlight_mermaid.css
version=26
; This mapping will be used to translate colors when the content of HTML is copied
; without background. You could just specify the foreground colors mapping here.
; It is useful for dark mode theme. '#aabbcc' or 'red' formats are supported.
; col1:col1_new,col2:col2_new
css_color_mapping=#abb2bf:#222222,#282c34:#f5f5f5,#61afef:#0099ff,#98c379:#8e24aa,#343a45:#e0e0e0,#6e7686:#666666,#373e47:#999999,#6c6c6c:#444444,#c678dd:#0000ee,#e06c75:#880000,#56b6c2:#af00d7,#e6c07b:#008700,#d19a66:#bc6060,#61aeee:#bc6060,#ba68c8:#6a1b9a
[phony]
; Abstract color attributes.
master_fg=@edit_fg
master_bg=#5768c4
master_light_bg=#7482CF
master_dark_bg=#3F51B5
master_focus_bg=#3A4AA6
master_hover_bg=#6575CA
master_pressed_bg=#354498
base_fg=#9DA5B4
base_bg=#21252B
main_fg=@base_fg
main_bg=@base_bg
title_fg=@base_fg
title_bg=@base_bg
disabled_fg=#4D5765
content_fg=@base_fg
content_bg=@base_bg
border_bg=#4e5666
separator_bg=#576071
hover_fg=#C9CED6
hover_bg=#31363F
selected_fg=#C9CED6
selected_bg=#3A3F4B
active_fg=@selected_fg
active_bg=@selected_bg
inactive_fg=@hover_fg
inactive_bg=#4D5465
focus_fg=@hover_fg
focus_bg=@hover_bg
pressed_fg=@hover_fg
pressed_bg=#2C303A
edit_fg=#D7DAE0
edit_bg=#282C34
edit_focus_bg=#1B1D23
edit_focus_border=@master_bg
edit_hover_bg=#313338
edit_hover_border=@master_bg
edit_selection_fg=@edit_fg
edit_selection_bg=#4D5565
icon_fg=#9EA5B4
icon_disabled_fg=@disabled_fg
danger_fg=#F5F5F5
danger_bg=#C9302C
danger_focus_bg=#D9534F
danger_hover_bg=#DE6764
danger_pressed_bg=#AC2925
[soft_defined]
; VAvatar.
; The foreground color of the avatar when Captain mode is triggered.
avatar_captain_mode_fg=@master_fg
; The background color of the avatar when Captain mode is triggered.
avatar_captain_mode_bg=@master_bg
; Style of the label in Navigation mode.
navigation_label_fg=@master_fg
navigation_label_bg=@master_bg
; Style of the bubble of VButtonWithWidget.
bubble_fg=@master_fg
bubble_bg=@master_bg
; Icons' foreground.
danger_icon_fg=@danger_bg
item_icon_fg=@icon_fg
title_icon_fg=@icon_fg
; VVimIndicator.
vim_indicator_key_label_fg=@base_fg
vim_indicator_mode_label_fg=@base_fg
vim_indicator_cmd_edit_pending_bg=@selected_bg
; VTabIndicator.
tab_indicator_label_fg=@base_fg
tab_indicator_tag_label_fg=#222222
tab_indicator_tag_label_bg=#ce93db
; Html template.
template_title_flash_light_fg=@master_light_bg
template_title_flash_dark_fg=@master_bg
; Search hit items in list or tree view.
search_hit_item_fg=@selected_fg
search_hit_item_bg=@master_dark_bg
; Universal Entry CMD Edit border color
ue_cmd_busy_border=#3F51B5
ue_cmd_fail_border=@danger_bg
; VListWidget/VTreeWidget separator.
item_separator_fg=@master_light_bg
item_separator_bg=@separator_bg
[widgets]
; Widget color attributes.
; QWidget.
widget_fg=@base_fg
; Separator of dock widgets.
dock_separator_bg=@border_bg
dock_separator_hover_bg=@hover_bg
dock_separator_pressed_bg=@pressed_bg
; Menubar.
menubar_bg=@main_bg
menubar_fg=@main_fg
menubar_item_selected_bg=@selected_bg
; Menu.
menu_bg=@base_bg
menu_fg=@base_fg
menu_border_bg=@border_bg
menu_item_disabled_fg=@disabled_fg
menu_item_selected_fg=@selected_fg
menu_item_selected_bg=@selected_bg
menu_separator_bg=@separator_bg
menu_icon_fg=@icon_fg
menu_icon_danger_fg=@danger_icon_fg
; Tooltip.
tooltip_bg=@master_bg
tooltip_fg=@master_fg
; Toolbar.
toolbar_bg=@main_bg
toolbar_separator_bg=@separator_bg
toolbar_extension_bg=@base_fg
toolbutton_hover_bg=@hover_bg
toolbutton_pressed_bg=@pressed_bg
toolbutton_checked_bg=@selected_bg
toolbutton_icon_fg=@icon_fg
toolbutton_icon_danger_fg=@danger_icon_fg
buttonmenuitem_decoration_text_fg=@master_light_bg
; Toolbox.
toolbox_icon_fg=@master_bg
toolbox_icon_active_fg=@master_fg
toolbox_title_border=@master_bg
; Dockwidget.
dockwidget_bg=@base_bg
dockwidget_title_fg=@title_fg
dockwidget_title_bg=@title_bg
dockwidget_button_hover_bg=@hover_bg
; PushButton.
pushbutton_fg=@base_fg
pushbutton_bg=transparent
pushbutton_border=@border_bg
pushbutton_pressed_bg=@pressed_bg
pushbutton_focus_bg=@focus_bg
pushbutton_checked_bg=@selected_bg
pushbutton_hover_bg=@hover_bg
pushbutton_default_border=@master_bg
pushbutton_disabled_fg=@disabled_fg
pushbutton_disabled_bg=@pushbutton_bg
pushbutton_specialbtn_fg=@master_fg
pushbutton_specialbtn_bg=@master_bg
pushbutton_specialbtn_focus_bg=@master_focus_bg
pushbutton_specialbtn_hover_bg=@master_hover_bg
pushbutton_specialbtn_checked_bg=@master_focus_bg
pushbutton_specialbtn_pressed_bg=@master_pressed_bg
pushbutton_titlebtn_bg=@title_bg
pushbutton_dangerbtn_fg=@danger_fg
pushbutton_dangerbtn_bg=@danger_bg
pushbutton_dangerbtn_hover_bg=@danger_hover_bg
pushbutton_dangerbtn_focus_bg=@danger_focus_bg
pushbutton_dangerbtn_pressed_bg=@danger_pressed_bg
pushbutton_toolboxbtn_active_fg=@master_fg
pushbutton_toolboxbtn_active_bg=@master_bg
pushbutton_toolboxbtn_active_focus_bg=@master_focus_bg
pushbutton_toolboxbtn_active_hover_bg=@master_hover_bg
pushbutton_toolboxbtn_active_pressed_bg=@master_pressed_bg
button_icon_fg=@icon_fg
button_icon_danger_fg=@danger_icon_fg
; ComboBox.
combobox_border=@border_bg
combobox_fg=@content_fg
combobox_bg=@content_bg
combobox_disabled_fg=@disabled_fg
combobox_view_border=@border_bg
combobox_view_selected_bg=@selected_bg
combobox_view_selected_fg=@selected_fg
combobox_view_item_hover_fg=@hover_fg
combobox_view_item_hover_bg=@hover_bg
combobox_focus_bg=@edit_focus_bg
combobox_focus_border=@edit_focus_border
combobox_hover_bg=@edit_hover_bg
combobox_hover_border=@edit_hover_border
combobox_item_icon_fg=@item_icon_fg
combobox_notebookselector_fg=@master_bg
combobox_notebookselector_bg=@combobox_bg
combobox_notebookselector_border=@master_bg
combobox_notebookselector_hover_fg=@master_bg
combobox_notebookselector_hover_bg=@hover_bg
combobox_notebookselector_focus_fg=@master_bg
combobox_notebookselector_focus_bg=@focus_bg
; Label.
label_fg=@base_fg
label_titlelabel_fg=@title_fg
label_titlelabel_bg=@title_bg
; LineEdit.
lineedit_border=@border_bg
lineedit_fg=@edit_fg
lineedit_bg=@edit_bg
lineedit_disabled_fg=@disabled_fg
lineedit_focus_bg=@edit_focus_bg
lineedit_focus_border=@edit_focus_border
lineedit_hover_bg=@edit_hover_bg
lineedit_hover_border=@edit_hover_border
lineedit_selection_fg=@edit_selection_fg
lineedit_selection_bg=@edit_selection_bg
; TabWidget.
tabwidget_pane_border=@selected_bg
; TabBar.
tabbar_fg=@base_fg
tabbar_bg=@base_bg
tabbar_border=@border_bg
tabbar_selected_fg=@edit_fg
tabbar_selected_bg=@edit_bg
tabbar_selected_border=@border_bg
tabbar_hover_fg=@hover_fg
tabbar_hover_bg=@hover_bg
tabbar_icon_fg=@icon_fg
tabbar_icon_special_fg=@danger_bg
; SelectorItem.
selectoritem_border=@master_bg
selectoritem_fg=@base_fg
selectoritem_bg=@base_bg
; InsertSelector.
insertselector_bg=@base_bg
; TreeView.
treeview_fg=@content_fg
treeview_bg=@content_bg
treeview_item_border_bg=@border_bg
treeview_item_hover_fg=@hover_fg
treeview_item_hover_bg=@hover_bg
treeview_item_selected_fg=@selected_fg
treeview_item_selected_bg=@selected_bg
treeview_item_selected_avtive_fg=@active_fg
treeview_item_selected_avtive_bg=@active_bg
treeview_item_selected_inactive_fg=@inactive_fg
treeview_item_selected_inactive_bg=@inactive_bg
treeview_item_icon_fg=@item_icon_fg
; ListView.
listview_fg=@content_fg
listview_bg=@content_bg
listview_item_hover_fg=@hover_fg
listview_item_hover_bg=@hover_bg
listview_item_selected_fg=@selected_fg
listview_item_selected_bg=@selected_bg
listview_item_selected_avtive_fg=@active_fg
listview_item_selected_avtive_bg=@active_bg
listview_item_selected_inactive_fg=@inactive_fg
listview_item_selected_inactive_bg=@inactive_bg
; QAbstractItemView for TextEdit Completer.
abstractitemview_textedit_fg=@content_fg
abstractitemview_textedit_bg=#323841
abstractitemview_textedit_item_hover_fg=@master_fg
abstractitemview_textedit_item_hover_bg=@master_hover_bg
abstractitemview_textedit_item_selected_fg=@master_fg
abstractitemview_textedit_item_selected_bg=@master_bg
abstractitemview_textedit_item_selected_avtive_fg=@master_fg
abstractitemview_textedit_item_selected_avtive_bg=@master_focus_bg
abstractitemview_textedit_item_selected_inactive_fg=@inactive_fg
abstractitemview_textedit_item_selected_inactive_bg=@inactive_bg
; Splitter.
splitter_handle_bg=@border_bg
splitter_handle_pressed_bg=@pressed_bg
; StatusBar.
statusbar_fg=@main_fg
statusbar_bg=@main_bg
statusbar_border=@border_bg
; ScrollBar.
scrollbar_bg=@base_bg
scrollbar_page_bg=transparent
scrollbar_handle_bg=#353B45
scrollbar_handle_hover_bg=#424A56
scrollbar_handle_pressed_bg=@hover_bg
; VEditWindow.
editwindow_corner_icon_fg=@master_bg
editwindow_corner_icon_inactive_fg=@icon_fg
; CheckBox.
checkbox_disabled_fg=@disabled_fg
checkbox_indicator_focus_bg=@focus_bg
checkbox_indicator_hover_bg=@hover_bg
checkbox_indicator_pressed_bg=@pressed_bg
; RadioButton.
radiobutton_disabled_fg=@disabled_fg
radiobutton_indicator_focus_bg=@focus_bg
radiobutton_indicator_hover_bg=@hover_bg
radiobutton_indicator_pressed_bg=@pressed_bg
; SpinBox.
spinbox_fg=@edit_fg
spinbox_bg=@edit_bg
spinbox_border=@border_bg
spinbox_selection_fg=@edit_selection_fg
spinbox_selection_bg=@edit_selection_bg
spinbox_focus_border=@edit_focus_border
spinbox_focus_bg=@edit_focus_bg
spinbox_hover_border=@edit_hover_border
spinbox_hover_bg=@edit_hover_bg
spinbox_button_hover_bg=@hover_bg
spinbox_button_pressed_bg=@pressed_bg
; HeaderView.
headerview_bg=#30333D
headerview_fg=@base_fg
headerview_border=@border_bg
headerview_checked_fg=@selected_fg
headerview_checked_bg=@selected_bg
; ProgressBar.
progressbar_bg=@edit_bg
progressbar_border_bg=@border_bg
progressbar_chunk_bg=@master_dark_bg
universalentry_bg=@base_bg
universalentry_border_bg=@border_bg
doublerowitem_second_row_label_fg=#808080
; GroupBox.
groupbox_border=@border_bg
groupbox_title_fg=@base_fg
; Slider.
slider_border_bg=@border_bg
slider_groove_bg=@edit_bg
slider_handle_bg=@master_bg
slider_subpage_bg=@master_dark_bg

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,96 @@
/*
Atom One Dark by Daniel Gamage
Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax
base: #343a45
mono-1: #abb2bf
mono-2: #818896
mono-3: #5c6370
hue-1: #56b6c2
hue-2: #61aeee
hue-3: #c678dd
hue-4: #98c379
hue-5: #e06c75
hue-5-2: #be5046
hue-6: #d19a66
hue-6-2: #e6c07b
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #abb2bf;
background: #343a45;
}
.hljs-comment,
.hljs-quote {
color: #6e7686;
font-style: italic;
}
.hljs-doctag,
.hljs-keyword,
.hljs-formula {
color: #c678dd;
}
.hljs-section,
.hljs-name,
.hljs-selector-tag,
.hljs-deletion,
.hljs-subst {
color: #e06c75;
}
.hljs-literal {
color: #56b6c2;
}
.hljs-string,
.hljs-regexp,
.hljs-addition,
.hljs-attribute,
.hljs-meta-string {
color: #98c379;
}
.hljs-built_in,
.hljs-class .hljs-title {
color: #e6c07b;
}
.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-type,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-number {
color: #d19a66;
}
.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-title {
color: #61aeee;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
.hljs-link {
text-decoration: underline;
}

View File

@@ -0,0 +1,416 @@
/* Flowchart variables */
/* Sequence Diagram variables */
/* Gantt chart variables */
.mermaid-diagram .mermaid .label {
font-family: 'trebuchet ms', verdana, arial;
color: #333;
}
.mermaid-diagram .node rect,
.mermaid-diagram .node circle,
.mermaid-diagram .node ellipse,
.mermaid-diagram .node polygon {
fill: #cde498;
stroke: #13540c;
stroke-width: 1px;
}
.mermaid-diagram .edgePath .path {
stroke: green;
stroke-width: 1.5px;
}
.mermaid-diagram .edgeLabel {
background-color: #e8e8e8;
}
.mermaid-diagram .cluster rect {
fill: #cdffb2 !important;
rx: 4 !important;
stroke: #6eaa49 !important;
stroke-width: 1px !important;
}
.mermaid-diagram .cluster text {
fill: #333;
}
.mermaid-diagram .actor {
stroke: #13540c;
fill: #cde498;
}
.mermaid-diagram text.actor {
fill: black;
stroke: none;
}
.mermaid-diagram .actor-line {
stroke: blue;
}
.mermaid-diagram .messageLine0 {
stroke-width: 1.5;
stroke-dasharray: "2 2";
marker-end: "url(#arrowhead)";
stroke: #333;
}
.mermaid-diagram .messageLine1 {
stroke-width: 1.5;
stroke-dasharray: "2 2";
stroke: #333;
}
.mermaid-diagram #arrowhead {
fill: #333;
}
.mermaid-diagram #crosshead path {
fill: #333 !important;
stroke: #333 !important;
}
.mermaid-diagram .messageText {
fill: #333;
stroke: none;
}
.mermaid-diagram .labelBox {
stroke: #326932;
fill: #cde498;
}
.mermaid-diagram .labelText {
fill: black;
stroke: none;
}
.mermaid-diagram .loopText {
fill: black;
stroke: none;
}
.mermaid-diagram .loopLine {
stroke-width: 2;
stroke-dasharray: "2 2";
marker-end: "url(#arrowhead)";
stroke: #326932;
}
.mermaid-diagram .note {
stroke: #6eaa49;
fill: #fff5ad;
}
.mermaid-diagram .noteText {
fill: black;
stroke: none;
font-family: 'trebuchet ms', verdana, arial;
font-size: 14px;
}
/** Section styling */
.mermaid-diagram .section {
stroke: none;
opacity: 0.2;
}
.mermaid-diagram .section0 {
fill: #6eaa49;
}
.mermaid-diagram .section2 {
fill: #6eaa49;
}
.mermaid-diagram .section1,
.mermaid-diagram .section3 {
fill: white;
opacity: 0.2;
}
.mermaid-diagram .sectionTitle0 {
fill: #333;
}
.mermaid-diagram .sectionTitle1 {
fill: #333;
}
.mermaid-diagram .sectionTitle2 {
fill: #333;
}
.mermaid-diagram .sectionTitle3 {
fill: #333;
}
.mermaid-diagram .sectionTitle {
text-anchor: start;
font-size: 11px;
text-height: 14px;
}
/* Grid and axis */
.mermaid-diagram .grid .tick {
stroke: lightblue;
opacity: 0.3;
shape-rendering: crispEdges;
}
.mermaid-diagram .grid path {
stroke-width: 0;
}
/* Today line */
.mermaid-diagram .today {
fill: none;
stroke: red;
stroke-width: 2px;
}
/* Task styling */
/* Default task */
.mermaid-diagram .task {
stroke-width: 2;
}
.mermaid-diagram .taskText {
text-anchor: middle;
font-size: 11px;
}
.mermaid-diagram .taskTextOutsideRight {
fill: black;
text-anchor: start;
font-size: 11px;
}
.mermaid-diagram .taskTextOutsideLeft {
fill: black;
text-anchor: end;
font-size: 11px;
}
/* Specific task settings for the sections*/
.mermaid-diagram .taskText0,
.mermaid-diagram .taskText1,
.mermaid-diagram .taskText2,
.mermaid-diagram .taskText3 {
fill: white;
}
.mermaid-diagram .task0,
.mermaid-diagram .task1,
.mermaid-diagram .task2,
.mermaid-diagram .task3 {
fill: #487e3a;
stroke: #13540c;
}
.mermaid-diagram .taskTextOutside0,
.mermaid-diagram .taskTextOutside2 {
fill: black;
}
.mermaid-diagram .taskTextOutside1,
.mermaid-diagram .taskTextOutside3 {
fill: black;
}
/* Active task */
.mermaid-diagram .active0,
.mermaid-diagram .active1,
.mermaid-diagram .active2,
.mermaid-diagram .active3 {
fill: #cde498;
stroke: #13540c;
}
.mermaid-diagram .activeText0,
.mermaid-diagram .activeText1,
.mermaid-diagram .activeText2,
.mermaid-diagram .activeText3 {
fill: black !important;
}
/* Completed task */
.mermaid-diagram .done0,
.mermaid-diagram .done1,
.mermaid-diagram .done2,
.mermaid-diagram .done3 {
stroke: blue;
fill: lightblue;
stroke-width: 2;
}
.mermaid-diagram .doneText0,
.mermaid-diagram .doneText1,
.mermaid-diagram .doneText2,
.mermaid-diagram .doneText3 {
fill: black !important;
}
/* Tasks on the critical line */
.mermaid-diagram .crit0,
.mermaid-diagram .crit1,
.mermaid-diagram .crit2,
.mermaid-diagram .crit3 {
stroke: #ff8888;
fill: red;
stroke-width: 2;
}
.mermaid-diagram .activeCrit0,
.mermaid-diagram .activeCrit1,
.mermaid-diagram .activeCrit2,
.mermaid-diagram .activeCrit3 {
stroke: #ff8888;
fill: #cde498;
stroke-width: 2;
}
.mermaid-diagram .doneCrit0,
.mermaid-diagram .doneCrit1,
.mermaid-diagram .doneCrit2,
.mermaid-diagram .doneCrit3 {
stroke: #ff8888;
fill: lightblue;
stroke-width: 2;
cursor: pointer;
shape-rendering: crispEdges;
}
.mermaid-diagram .doneCritText0,
.mermaid-diagram .doneCritText1,
.mermaid-diagram .doneCritText2,
.mermaid-diagram .doneCritText3 {
fill: black !important;
}
.mermaid-diagram .activeCritText0,
.mermaid-diagram .activeCritText1,
.mermaid-diagram .activeCritText2,
.mermaid-diagram .activeCritText3 {
fill: black !important;
}
.mermaid-diagram .titleText {
text-anchor: middle;
font-size: 18px;
fill: black;
}
.mermaid-diagram g.classGroup text {
fill: #13540c;
stroke: none;
font-family: 'trebuchet ms', verdana, arial;
font-size: 14px;
}
.mermaid-diagram g.classGroup rect {
fill: #cde498;
stroke: #13540c;
}
.mermaid-diagram g.classGroup line {
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram svg .classLabel .box {
stroke: none;
stroke-width: 0;
fill: #cde498;
opacity: 0.5;
}
.mermaid-diagram svg .classLabel .label {
fill: #13540c;
}
.mermaid-diagram .relation {
stroke: #13540c;
stroke-width: 1;
fill: none;
}
.mermaid-diagram .composition {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #compositionStart {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #compositionEnd {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram .aggregation {
fill: #cde498;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #aggregationStart {
fill: #cde498;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #aggregationEnd {
fill: #cde498;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #dependencyStart {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #dependencyEnd {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #extensionStart {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram #extensionEnd {
fill: #13540c;
stroke: #13540c;
stroke-width: 1;
}
.mermaid-diagram .node text {
font-family: 'trebuchet ms', verdana, arial;
font-size: 14px;
}
.mermaid-diagram div.mermaidTooltip {
position: absolute;
text-align: center;
max-width: 200px;
padding: 2px;
font-family: 'trebuchet ms', verdana, arial;
font-size: 12px;
background: #cdffb2;
border: 1px solid #6eaa49;
border-radius: 2px;
pointer-events: none;
z-index: 100;
}

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<g>
<polygon points="128,192 256,320 384,192 " fill="#333333"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 548 B

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<g>
<polygon points="128,192 256,320 384,192 " fill="#C0C0C0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 548 B

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path d="M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4
L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1
c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1
c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 974 B

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#9E9E9E" d="M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4
L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1
c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1
c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 995 B

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path d="M64,144v304h303.9V144H64z M351.9,432H80V160h271.9V432z"/>
<g>
<polygon points="448,64 144,64 144,128 160,128 160,80 432,80 432,352 384,352 384,368 448,368 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 673 B

View File

@@ -0,0 +1,292 @@
body {
margin: 0 auto;
font-family: "Segoe UI", Helvetica, sans-serif, Tahoma, Arial, Geneva, Georgia, Palatino, "Times New Roman", "Hiragino Sans GB", "冬青黑体", "Microsoft YaHei", "微软雅黑", "Microsoft YaHei UI", "WenQuanYi Micro Hei", "文泉驿雅黑", Dengxian, "等线体", STXihei, "华文细黑", "Liberation Sans", "Droid Sans", NSimSun, "新宋体", SimSun, "宋体";
color: #222222;
line-height: 1.5;
padding: 15px;
font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
color: #222222;
font-weight: bold;
margin-top: 20px;
margin-bottom: 10px;
padding: 0;
}
p {
padding: 0;
margin-top: 16px;
margin-bottom: 16px;
}
h1 {
font-size: 26px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 22px;
}
h4 {
font-size: 20px;
}
h5 {
font-size: 19px;
}
h6 {
font-size: 18px;
}
a {
color: #0099ff;
margin: 0;
padding: 0;
vertical-align: baseline;
text-decoration: none;
word-break: break-word;
}
a:hover {
text-decoration: underline;
color: #ff6600;
}
a:visited {
color: purple;
}
ul, ol {
padding: 0;
padding-left: 24px;
}
li {
line-height: 24px;
}
li ul, li ol {
margin-left: 16px;
}
p, ul, ol {
font-size: 16px;
line-height: 24px;
}
pre {
display: block;
overflow-y: hidden;
overflow-x: auto;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}
code {
font-family: Consolas, Monaco, Monospace, Courier;
color: #8E24AA;
word-break: break-word;
}
pre code {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #222222;
background-color: #E0E0E0;
line-height: 1.5;
font-family: Consolas, Monaco, Monospace, Courier;
white-space: pre;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}
pre code.markdown-metadata {
border-left: .5em solid #00897B;
}
aside {
display: block;
float: right;
width: 390px;
}
blockquote {
color: #666;
border-left: .5em solid #7A7A7A;
padding: 0 1em;
margin-left: 0;
}
blockquote p {
color: #666;
}
hr {
display: block;
text-align: left;
margin: 1em 0;
border: none;
height: 2px;
background: #999;
}
table {
padding: 0;
margin: 1rem 0.5rem;
border-collapse: collapse;
}
table tr {
border-top: 2px solid #cccccc;
background-color: white;
margin: 0;
padding: 0;
}
table tr:nth-child(2n) {
background-color: #f8f8f8;
}
table tr th {
font-weight: bold;
border: 2px solid #cccccc;
margin: 0;
padding: 6px 13px;
}
table tr td {
border: 2px solid #cccccc;
margin: 0;
padding: 6px 13px;
}
table tr th :first-child, table tr td :first-child {
margin-top: 0;
}
table tr th :last-child, table tr td :last-child {
margin-bottom: 0;
}
div.mermaid-diagram {
margin: 16px 0px 16px 0px;
overflow-y: hidden;
}
div.flowchart-diagram {
padding: 0px 5px 0px 5px;
margin: 16px 0px 16px 0px;
width: fit-content;
overflow: hidden;
}
div.wavedrom-diagram {
padding: 0px 5px 0px 5px;
margin: 16px 0px 16px 0px;
width: fit-content;
overflow: hidden;
}
div.plantuml-diagram {
padding: 5px 5px 0px 5px;
margin: 16px 0px 16px 0px;
width: fit-content;
overflow: hidden;
}
.img-package {
text-align: center;
}
img.img-center {
display: block;
margin-left: auto;
margin-right: auto;
}
span.img-caption {
min-width: 20%;
max-width: 80%;
display: inline-block;
padding: 10px;
margin: 0 auto;
border-bottom: 1px solid #c0c0c0;
color: #6c6c6c;
text-align: center;
line-height: 1.5;
}
.emoji_zero,.emoji_one,.emoji_two,.emoji_three,.emoji_four,.emoji_five,.emoji_six,.emoji_seven,.emoji_eight,.emoji_nine {
margin-left: 5px;
margin-right: 8px;
}
div.preview-hint {
opacity: 0.5;
margin-top: 30%;
margin-bottom: 30%;
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
}
/* For Highlight.js Line Number */
table.hljs-ln tr {
border: none;
background-color: transparent;
}
table.hljs-ln tr td {
border: none;
background-color: transparent;
}
table.hljs-ln tr td.hljs-ln-numbers {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-align: center;
color: #AAA;
border-right: 1px solid #CCC;
vertical-align: top;
padding-right: 5px;
white-space: nowrap;
}
table.hljs-ln tr td.hljs-ln-code {
padding-left: 10px;
}
::selection {
background: #1976D2;
color: white;
}
.modal-box {
background-color: rgb(245, 245, 245);
background-color: rgba(245, 245, 245, 0.95);
}
span.modal-close {
color: #666666;
}
span.modal-close:hover,
span.modal-close:focus {
color: #222222;
}

View File

@@ -0,0 +1,208 @@
# This is the default markdown styles used for Peg-Markdown-Highlight
# created by Le Tan(tamlokveer@gmail.com).
# For a complete description of the syntax, please refer to the original
# documentation of the style parser
# [The Syntax of PEG Markdown Highlight Stylesheets](http://hasseg.org/peg-markdown-highlight/docs/stylesheet_syntax.html).
# VNote adds some styles in the syntax which will be marked [VNote] in the comment.
#
# Note: Empty lines within a section is NOT allowed.
# Note: Do NOT modify this file directly. Copy it and tune your own style!
editor
# QTextEdit just choose the first available font, so specify the Chinese fonts first
# Do not use "" to quote the name
font-family: Hiragino Sans GB, 冬青黑体, Microsoft YaHei, 微软雅黑, Microsoft YaHei UI, WenQuanYi Micro Hei, 文泉驿雅黑, Dengxian, 等线体, STXihei, 华文细黑, Liberation Sans, Droid Sans, NSimSun, 新宋体, SimSun, 宋体, Verdana, Helvetica, sans-serif, Tahoma, Arial, Geneva, Georgia, Times New Roman
font-size: 12
foreground: 363636
# [VNote] Style for trailing space
trailing-space: a8a8a8
# [VNote] Style for line number
line-number-background: f5f5f5
line-number-foreground: 424242
# [VNote] Style for selected word highlight
selected-word-foreground: 222222
selected-word-background: dfdf00
# [VNote] Style for searched word highlight
searched-word-foreground: 222222
searched-word-background: 4db6ac
# [VNote] Style for searched word under cursor highlight
searched-word-cursor-foreground: 222222
searched-word-cursor-background: 66bb6a
# [VNote] Style for incremental searched word highlight
incremental-searched-word-foreground: 222222
incremental-searched-word-background: ce93d8
# [VNote] Style for color column in fenced code block
color-column-background: dd0000
color-column-foreground: ffff00
# [VNote] Style for preview image line
preview-image-line-foreground: 9575cd
editor-selection
foreground: ffffff
background: 1976d2
editor-current-line
background: c5cae9
# [VNote] Vim insert mode cursor line background
vim-insert-background: c5cae9
# [VNote] Vim normal mode cursor line background
vim-normal-background: e0e0e0
# [VNote] Vim visual mode cursor line background
vim-visual-background: ffe0b2
# [VNote] Vim replace mode cursor line background
vim-replace-background: f8bbd0
H1
foreground: 363636
font-style: bold
font-size: +6
H2
foreground: 363636
font-style: bold
font-size: +5
H3
foreground: 363636
font-style: bold
font-size: +4
H4
foreground: 363636
font-style: bold
font-size: +3
H5
foreground: 363636
font-style: bold
font-size: +2
H6
foreground: 363636
font-style: bold
font-size: +1
HRULE
foreground: 363636
background: dac7c9
LIST_BULLET
foreground: d33682
font-style: bold
font-size: +2
LIST_ENUMERATOR
foreground: 0000ff
LINK
foreground: 005fff
AUTO_LINK_URL
foreground: 005fff
AUTO_LINK_EMAIL
foreground: 005fff
IMAGE
foreground: 616161
REFERENCE
foreground: 826200
CODE
foreground: 8e24aa
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
EMPH
font-style: italic
STRONG
font-style: bold
HTML_ENTITY
foreground: 8900b5
HTML
foreground: 8900b5
HTMLBLOCK
foreground: 8900b5
COMMENT
foreground: 93a1a1
VERBATIM
foreground: 673ab7
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
FENCEDCODEBLOCK
foreground: 673ab7
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
# [VNote] Codeblock sylte from HighlightJS (bold, italic, underlined, strikeout, color)
# The last occurence of the same attribute takes effect
hljs-comment: 6c6c6c
hljs-keyword: 0000ee
hljs-attribute: 0000ee
hljs-selector-tag: 0000ee
hljs-meta-keyword: 0000ee
hljs-doctag: 0000ee
hljs-name: 0000ee
hljs-type: 880000
hljs-string: 880000
hljs-number: 880000
hljs-selector-id: 880000
hljs-selector-class: 880000
hljs-quote: 880000
hljs-template-tag: 880000
hljs-deletion: 880000
# Could specify multiple attribute in one line
hljs-title: bold, 880000
hljs-section: bold, 880000
hljs-regexp: bc6060
hljs-symbol: bc6060
hljs-variable: bc6060
hljs-template-variable: bc6060
hljs-link: bc6060
hljs-selector-attr: bc6060
hljs-selector-pseudo: bc6060
hljs-literal: af00d7
hljs-built_in: 008700
hljs-bullet: 008700
hljs-code: 008700
hljs-addition: 008700
hljs-meta: 1f7199
hljs-meta-string: 4d99bf
hljs-emphasis: italic
hljs-strong: bold
BLOCKQUOTE
foreground: 00af00
NOTE
foreground: 0087b5
STRIKE
foreground: b71c1c
font-style: strikeout
FRONTMATTER
foreground: 6c6c6c
INLINEEQUATION
foreground: 00897b
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
DISPLAYFORMULA
foreground: 00897b
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
MARK
foreground: 363636
background: ffff76
TABLE
font-family: YaHei Consolas Hybrid, Consolas, Monaco, Andale Mono, Monospace, Courier New
TABLEBORDER
foreground: d33682
background: eeeeee

View File

@@ -0,0 +1,176 @@
; File path could be absolute path or relative path (related to this file).
; Use @color_tag to reference a style.
[metadata]
qss_file=v_native.qss
mdhl_file=v_native.mdhl
css_file=v_native.css
codeblock_css_file=v_native_codeblock.css
mermaid_css_file=v_native_mermaid.css
version=24
[phony]
; Abstract color attributes.
base_fg=#000000
base_bg=#F5F5F5
title_fg=@base_fg
title_bg=transparent
hover_fg=#000000
hover_bg=#C0C0C0
selected_fg=#000000
selected_bg=#BCBCBC
focus_fg=#000000
focus_bg=#A9A9A9
pressed_fg=#000000
pressed_bg=#808080
disabled_fg=#BCBCBC
separator_bg=#C0C0C0
border_bg=#C0C0C0
content_fg=#000000
content_bg=#FFFFFF
icon_fg=#222222
icon_disabled_fg=@disabled_fg
danger_fg=#F5F5F5
danger_bg=#C9302C
danger_focus_bg=#D9534F
danger_hover_bg=#D9534F
danger_pressed_bg=#AC2925
[soft_defined]
; VAvatar.
; The foreground color of the avatar when Captain mode is triggered.
avatar_captain_mode_fg=@base_bg
; The background color of the avatar when Captain mode is triggered.
avatar_captain_mode_bg=#6C6C6C
; Style of the label in Navigation mode.
navigation_label_fg=#4D4D4D
navigation_label_bg=#F4F4F4
; Style of the bubble of VButtonWithWidget.
bubble_fg=#FFFFFF
bubble_bg=#616161
; Icons' foreground.
danger_icon_fg=@danger_bg
item_icon_fg=@icon_fg
title_icon_fg=@icon_fg
; VVimIndicator.
vim_indicator_key_label_fg=@base_fg
vim_indicator_mode_label_fg=@base_fg
vim_indicator_cmd_edit_pending_bg=@selected_bg
; VTabIndicator.
tab_indicator_label_fg=@base_fg
tab_indicator_tag_label_fg=#222222
tab_indicator_tag_label_bg=#ce93db
; Html template.
template_title_flash_light_fg=#80CBC4
template_title_flash_dark_fg=#00897B
; Search hit items in list or tree view.
search_hit_item_fg=@selected_fg
search_hit_item_bg=#80CBC4
; Universal Entry CMD Edit border color
ue_cmd_busy_border=#3F51B5
ue_cmd_fail_border=@danger_bg
; VListWidget/VTreeWidget separator.
item_separator_fg=@content_fg
item_separator_bg=@separator_bg
[widgets]
; Widget color attributes.
; QWidget.
widget_fg=@base_fg
; Menubar.
menubar_item_selected_bg=@selected_bg
; Menu.
menu_separator_bg=@separator_bg
; Toolbar.
toolbutton_hover_bg=@hover_bg
; Dockwidget.
dockwidget_title_bg=@title_bg
dockwidget_button_hover_bg=@hover_bg
; PushButton.
pushbutton_default_border=#424242
pushbutton_disabled_fg=@disabled_fg
pushbutton_disabled_bg=@pushbutton_bg
pushbutton_cornerbtn_hover_bg=@hover_bg
pushbutton_cornerbtn_focus_bg=@focus_bg
pushbutton_cornerbtn_pressed_bg=@pressed_bg
pushbutton_statusbtn_hover_bg=@hover_bg
pushbutton_statusbtn_focus_bg=@focus_bg
pushbutton_statusbtn_pressed_bg=@pressed_bg
pushbutton_avatarbtn_hover_bg=@hover_bg
pushbutton_avatarbtn_focus_bg=@focus_bg
pushbutton_avatarbtn_pressed_bg=@pressed_bg
pushbutton_flatbtn_hover_bg=@hover_bg
pushbutton_flatbtn_focus_bg=@focus_bg
pushbutton_flatbtn_pressed_bg=@pressed_bg
pushbutton_selectionbtn_hover_bg=@hover_bg
pushbutton_selectionbtn_focus_bg=@focus_bg
pushbutton_selectionbtn_pressed_bg=@pressed_bg
pushbutton_titlebtn_bg=@title_bg
pushbutton_titlebtn_hover_bg=@hover_bg
pushbutton_titlebtn_focus_bg=@focus_bg
pushbutton_titlebtn_pressed_bg=@pressed_bg
pushbutton_dangerbtn_fg=@danger_fg
pushbutton_dangerbtn_bg=@danger_bg
pushbutton_dangerbtn_hover_bg=@danger_hover_bg
pushbutton_dangerbtn_focus_bg=@danger_focus_bg
pushbutton_dangerbtn_pressed_bg=@danger_pressed_bg
; ComboBox.
combobox_bg=@content_bg
combobox_view_border=@border_bg
combobox_view_item_hover_fg=@hover_fg
combobox_view_item_hover_bg=@hover_bg
combobox_focus_bg=@focus_bg
; Label.
label_titlelabel_fg=@title_fg
label_titlelabel_bg=@title_bg
; LineEdit.
lineedit_border=@border_bg
lineedit_fg=@content_fg
lineedit_bg=@content_bg
; SelectorItem.
selectoritem_border=@base_fg
selectoritem_fg=@base_fg
selectoritem_bg=@base_bg
; InsertSelector.
insertselector_bg=@base_bg
; Splitter.
splitter_handle_bg=@title_bg

View File

@@ -0,0 +1,554 @@
/* QMenuBar */
QMenuBar {
border: none;
}
QMenuBar::item:selected {
background: @menubar_item_selected_bg;
}
/* End QMenuBar */
QToolBar {
border: none;
}
QToolButton:hover {
background: @toolbutton_hover_bg;
}
/* DockWidget */
QDockWidget {
titlebar-close-icon: url(close.svg);
titlebar-normal-icon: url(float.svg);
}
QDockWidget::Title {
background: @dockwidget_title_bg;
text-align: center left;
}
QDockWidget::close-button, QDockWidget::float-button {
border: none;
icon-size: $16px;
width: $16px;
}
QDockWidget::close-button:hover, QDockWidget::float-button:hover {
background: @dockwidget_button_hover_bg;
}
QDockWidget::close-button {
subcontrol-position: top right;
subcontrol-origin: margin;
position: absolute;
top: 0px; right: 0px; bottom: 0px;
}
QDockWidget::float-button {
subcontrol-position: top right;
subcontrol-origin: margin;
position: absolute;
top: 0px; right: $18px; bottom: 0px;
}
/* End DockWidget */
/* QPushButton */
QPushButton[CornerBtn="true"] {
padding: 4px -2px 4px -2px;
margin: 0px;
border: none;
background-color: transparent;
}
QPushButton[CornerBtn="true"]::menu-indicator {
image: none;
}
QPushButton[CornerBtn="true"]:focus {
background-color: @pushbutton_cornerbtn_focus_bg;
}
QPushButton[CornerBtn="true"]:hover {
background-color: @pushbutton_cornerbtn_hover_bg;
}
QPushButton[CornerBtn="true"]:pressed {
background-color: @pushbutton_cornerbtn_pressed_bg;
}
QPushButton[CornerBtn="true"]:disabled {
color: @pushbutton_disabled_fg;
background-color: @pushbutton_disabled_bg;
}
QPushButton[CornerBtn="true"]:default {
border: 1px solid @pushbutton_default_border;
background-color: transparent;
}
QPushButton[StatusBtn="true"] {
font: bold;
padding: 0px 2px 0px 2px;
margin: 0px;
border: none;
background-color: transparent;
}
QPushButton[StatusBtn="true"]:focus {
background-color: @pushbutton_statusbtn_focus_bg;;
}
QPushButton[StatusBtn="true"]:hover {
background-color: @pushbutton_statusbtn_hover_bg;
}
QPushButton[StatusBtn="true"]:pressed {
background-color: @pushbutton_statusbtn_pressed_bg;
}
QPushButton[StatusBtn="true"]:disabled {
color: @pushbutton_disabled_fg;
background-color: @pushbutton_disabled_bg;
}
QPushButton[StatusBtn="true"]:default {
border: 1px solid @pushbutton_default_border;
background-color: transparent;
}
QPushButton[FlatBtn="true"] {
padding: 4px;
margin: 0px;
border: none;
background-color: transparent;
}
QPushButton[FlatBtn="true"]:focus {
background-color: @pushbutton_flatbtn_focus_bg;
}
QPushButton[FlatBtn="true"]:hover {
background-color: @pushbutton_flatbtn_hover_bg;
}
QPushButton[FlatBtn="true"]:pressed {
background-color: @pushbutton_flatbtn_pressed_bg;
}
QPushButton[FlatBtn="true"]:disabled {
color: @pushbutton_disabled_fg;
background-color: @pushbutton_disabled_bg;
}
QPushButton[FlatBtn="true"]:default {
border: 1px solid @pushbutton_default_border;
background-color: transparent;
}
QPushButton[SelectionBtn="true"] {
padding: 4px 10px 4px 10px;
border: none;
background-color: transparent;
font-size: 15pt;
text-align: left;
}
QPushButton[SelectionBtn="true"]:focus {
background-color: @pushbutton_selectionbtn_focus_bg;
}
QPushButton[SelectionBtn="true"]:hover {
background-color: @pushbutton_selectionbtn_hover_bg;
}
QPushButton[SelectionBtn="true"]:pressed {
background-color: @pushbutton_selectionbtn_pressed_bg;
}
QPushButton[SelectionBtn="true"]:disabled {
color: @pushbutton_disabled_fg;
background-color: @pushbutton_disabled_bg;
}
QPushButton[SelectionBtn="true"]:default {
border: 1px solid @pushbutton_default_border;
background-color: transparent;
}
QPushButton[TitleBtn="true"] {
padding: 4px;
margin: 0px;
border: none;
background-color: @pushbutton_titlebtn_bg;
}
QPushButton[TitleBtn="true"]:focus {
background-color: @pushbutton_titlebtn_focus_bg;
}
QPushButton[TitleBtn="true"]:hover {
background-color: @pushbutton_titlebtn_hover_bg;
}
QPushButton[TitleBtn="true"]:pressed {
background-color: @pushbutton_titlebtn_pressed_bg;
}
QPushButton[TitleBtn="true"]:disabled {
color: @pushbutton_disabled_fg;
background-color: @pushbutton_disabled_bg;
}
QPushButton[TitleBtn="true"]:default {
border: 1px solid @pushbutton_default_border;
background-color: @pushbutton_titlebtn_bg;
}
QPushButton[DangerBtn="true"] {
padding: 3px 20px 3px 20px;
color: @pushbutton_dangerbtn_fg;
border: none;
background-color: @pushbutton_dangerbtn_bg;
}
QPushButton[DangerBtn="true"]:focus {
background-color: @pushbutton_dangerbtn_focus_bg;
}
QPushButton[DangerBtn="true"]:hover {
background-color: @pushbutton_dangerbtn_hover_bg;
}
QPushButton[DangerBtn="true"]:pressed {
background-color: @pushbutton_dangerbtn_pressed_bg;
}
QPushButton[DangerBtn="true"]:disabled {
color: @pushbutton_disabled_fg;
background-color: @pushbutton_disabled_bg;
}
QPushButton[DangerBtn="true"]:default {
border: 1px solid @pushbutton_default_border;
background-color: @pushbutton_dangerbtn_bg;
}
QPushButton[AvatarBtn="true"] {
padding: 2px 4px 2px 4px;
margin: 0px;
border: none;
background-color: transparent;
}
QPushButton[AvatarBtn="true"]:focus {
background-color: @pushbutton_avatarbtn_focus_bg;;
}
QPushButton[AvatarBtn="true"]:hover {
background-color: @pushbutton_avatarbtn_hover_bg;
}
QPushButton[AvatarBtn="true"]:pressed {
background-color: @pushbutton_avatarbtn_pressed_bg;
}
QPushButton[AvatarBtn="true"]:disabled {
color: @pushbutton_disabled_fg;
background-color: @pushbutton_disabled_bg;
}
QPushButton[AvatarBtn="true"]:default {
border: 1px solid @pushbutton_default_border;
background-color: transparent;
}
VButtonMenuItem {
padding: 5px;
padding-right: 30px;
border: 1px solid transparent;
background-color: transparent;
text-align: left;
}
VButtonMenuItem[Heading1="true"] {
font-size: 22pt;
}
VButtonMenuItem[Heading2="true"] {
font-size: 20pt;
}
VButtonMenuItem[Heading3="true"] {
font-size: 18pt;
}
VButtonMenuItem[Heading4="true"] {
font-size: 16pt;
}
VButtonMenuItem[Heading5="true"] {
font-size: 14pt;
}
VButtonMenuItem[Heading6="true"] {
font-size: 14pt;
}
VButtonMenuItem:focus {
background-color: @menubar_item_selected_bg;
}
VButtonMenuItem:hover {
background-color: @menubar_item_selected_bg;
}
VButtonMenuItem:disabled {
color: @pushbutton_disabled_fg;
background-color: @pushbutton_disabled_bg;
}
/* End QPushButton*/
/* QComboBox */
QComboBox#NotebookSelector {
border: none;
font-size: 12pt;
padding-top: 5px;
padding-bottom: 5px;
icon-size: $24px;
background: @combobox_bg;
}
QComboBox#NotebookSelector:focus {
background-color: @combobox_focus_bg;
}
QComboBox#NotebookSelector::drop-down {
subcontrol-origin: padding;
subcontrol-position: top right;
width: $20px;
border: none;
background: transparent;
}
QComboBox#NotebookSelector::down-arrow {
image: url(arrow_dropdown.svg);
width: $20px;
height: $20px;
}
QComboBox#NotebookSelector::down-arrow:disabled {
image: url(arrow_dropdown_disabled.svg);
width: $20px;
height: $20px;
}
QComboBox#NotebookSelector QListWidget {
border: 1px solid @combobox_view_border;
background-color: @combobox_bg;
font-size: 12pt;
icon-size: $24px;
}
QComboBox#NotebookSelector QListWidget::item {
padding-top: $5px;
padding-bottom: $5px;
}
QComboBox#NotebookSelector QListWidget::item:hover {
color: @combobox_view_item_hover_fg;
background-color: @combobox_view_item_hover_bg;
}
/* End QComboBox */
/* QLabel */
QLabel[TitleLabel="true"] {
padding-top: 5px;
padding-bottom: 5px;
color: @label_titlelabel_fg;
background-color: @label_titlelabel_bg;
}
QLabel[ColorRedLabel="true"] {
padding-left: 5px;
padding-right: 5px;
font: bold;
color: white;
border-radius: 2px;
background-color: #D32F2F;
}
QLabel[ColorGreenLabel="true"] {
padding-left: 5px;
padding-right: 5px;
font: bold;
color: white;
border-radius: 2px;
background-color: #388E3C;
}
QLabel[ColorGreyLabel="true"] {
padding-left: 5px;
padding-right: 5px;
font: bold;
color: white;
border-radius: 2px;
background-color: #616161;
}
QLabel[ColorTealLabel="true"] {
padding-left: 5px;
padding-right: 5px;
font: bold;
color: white;
border-radius: 2px;
background-color: #00796B;
}
QLabel[MenuSeparator="true"] {
padding-top: 5px;
padding-bottom: 5px;
margin-top: 3px;
font: italic;
border-top: 1px solid @menu_separator_bg
}
QLabel[TagLabel="true"] {
padding-left: $5px;
padding-right: $5px;
color: @tab_indicator_tag_label_fg;
background-color: @tab_indicator_tag_label_bg;
}
VVimIndicator QLabel[VimIndicatorKeyLabel="true"] {
font: bold;
color: @vim_indicator_key_label_fg;
background: transparent;
}
VVimIndicator QLabel[VimIndicatorModeLabel="true"] {
padding: 0px 2px 0px 2px;
font: bold;
color: @vim_indicator_mode_label_fg;
/* background color will be controlled by the code. */
}
VTabIndicator QLabel[TabIndicatorLabel="true"] {
color: @tab_indicator_label_fg;
background: transparent;
}
VSelectorItemWidget QLabel[SelectorItemShortcutLabel="true"] {
font: bold;
border: $2px solid @selectoritem_border;
padding: 3px;
border-radius: 5px;
background-color: @selectoritem_bg;
color: @selectoritem_fg;
}
VDoubleRowItemWidget QLabel[FirstRowLabel="true"] {
font: bold;
}
/* End QLabel */
/* QLineEdit */
QLineEdit[VimCommandLine="true"] {
padding: 0px;
margin: 0px;
border: none;
color: @lineedit_fg;
background: @lineedit_bg;
}
QLineEdit[EmbeddedEdit="true"] {
padding: 0px;
margin: 0px;
border: none;
color: @lineedit_fg;
background: transparent;
}
VUniversalEntry VMetaWordLineEdit {
border: 1px solid @lineedit_border;
}
/* End QLineEdit */
/* QTabBar */
QTabBar::close-button {
image: url(close_grey.svg);
}
QTabBar::close-button:focus {
image: url(close.svg);
background-color: @tabbar_closebutton_focus_bg;
}
QTabBar::close-button:hover {
image: url(close.svg);
background-color: @tabbar_closebutton_hover_bg;
}
/* End QTabBar */
/* QTreeView */
QTreeView {
border: none;
}
QTreeView::item {
padding-top: 5px;
padding-bottom: 5px;
}
/* End QTreeView */
/* QListView */
QListView {
border: none;
}
QListView::item {
padding-top: 5px;
padding-bottom: 5px;
}
/* End QListView */
/* QAbstractItemView for TextEdit Completer popup*/
QAbstractItemView[TextEdit="true"] {
border: 1px solid @border_bg;
}
/* End QAbstractItemView */
/* QSplitter */
QSplitter {
border: none;
margin-left: $3px;
}
QSplitter::handle {
background-color: @splitter_handle_bg;
}
QSplitter::handle:vertical {
height: $2px;
}
QSplitter::handle:horizontal {
width: $2px;
}
/* End QSplitter */
/* QWidget */
QWidget#FindReplaceTitleWidget {
background: @title_bg;
}
QWidget
{
color: @widget_fg;
font-family: "Hiragino Sans GB", "冬青黑体", "Microsoft YaHei", "微软雅黑", "Microsoft YaHei UI", "WenQuanYi Micro Hei", "文泉驿雅黑", "Dengxian", "等线体", "STXihei", "华文细黑", "Liberation Sans", "Droid Sans", "NSimSun", "新宋体", "SimSun", "宋体", "Helvetica", "sans-serif", "Tahoma", "Arial", "Verdana", "Geneva", "Georgia", "Times New Roman";
}
VInsertSelector {
border: none;
background: @insertselector_bg;
}
/* End QWidget */

View File

@@ -0,0 +1,99 @@
/*
Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #E0E0E0;
}
/* Base color: saturation 0; */
.hljs,
.hljs-subst {
color: #363636;
}
.hljs-comment {
color: #767676;
}
.hljs-keyword,
.hljs-attribute,
.hljs-selector-tag,
.hljs-meta-keyword,
.hljs-doctag,
.hljs-name {
color: #0000ee;
}
/* User color: hue: 0 */
.hljs-type,
.hljs-string,
.hljs-number,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion {
color: #880000;
}
.hljs-title,
.hljs-section {
color: #880000;
font-weight: bold;
}
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #BC6060;
}
/* Language color: hue: 90; */
.hljs-literal {
color: #af00d7;
}
.hljs-built_in,
.hljs-bullet,
.hljs-code,
.hljs-addition {
color: #008700;
}
/* Meta color: hue: 200 */
.hljs-meta {
color: #1f7199;
}
.hljs-meta-string {
color: #4d99bf;
}
/* Misc effects */
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}

View File

@@ -0,0 +1,320 @@
/* Flowchart variables */
/* Sequence Diagram variables */
/* Gantt chart variables */
.mermaid-diagram .mermaid .label {
color: #333;
}
.mermaid-diagram .node rect,
.mermaid-diagram .node circle,
.mermaid-diagram .node ellipse,
.mermaid-diagram .node polygon {
fill: #ECECFF;
stroke: #CCCCFF;
stroke-width: 1px;
}
.mermaid-diagram .edgePath .path {
stroke: #333333;
}
.mermaid-diagram .edgeLabel {
background-color: #e8e8e8;
}
.mermaid-diagram .cluster rect {
fill: #ffffde !important;
rx: 4 !important;
stroke: #aaaa33 !important;
stroke-width: 1px !important;
}
.mermaid-diagram .cluster text {
fill: #333;
}
.mermaid-diagram .actor {
stroke: #CCCCFF;
fill: #ECECFF;
}
.mermaid-diagram text.actor {
fill: black;
stroke: none;
}
.mermaid-diagram .actor-line {
stroke: grey;
}
.mermaid-diagram .messageLine0 {
stroke-width: 1.5;
stroke-dasharray: "2 2";
marker-end: "url(#arrowhead)";
stroke: #333;
}
.mermaid-diagram .messageLine1 {
stroke-width: 1.5;
stroke-dasharray: "2 2";
stroke: #333;
}
.mermaid-diagram #arrowhead {
fill: #333;
}
.mermaid-diagram #crosshead path {
fill: #333 !important;
stroke: #333 !important;
}
.mermaid-diagram .messageText {
fill: #333;
stroke: none;
}
.mermaid-diagram .labelBox {
stroke: #CCCCFF;
fill: #ECECFF;
}
.mermaid-diagram .labelText {
fill: black;
stroke: none;
}
.mermaid-diagram .loopText {
fill: black;
stroke: none;
}
.mermaid-diagram .loopLine {
stroke-width: 2;
stroke-dasharray: "2 2";
marker-end: "url(#arrowhead)";
stroke: #CCCCFF;
}
.mermaid-diagram .note {
stroke: #aaaa33;
fill: #fff5ad;
}
.mermaid-diagram .noteText {
fill: black;
stroke: none;
font-family: 'trebuchet ms', verdana, arial;
font-size: 14px;
}
/** Section styling */
.mermaid-diagram .section {
stroke: none;
opacity: 0.2;
}
.mermaid-diagram .section0 {
fill: rgba(102, 102, 255, 0.49);
}
.mermaid-diagram .section2 {
fill: #fff400;
}
.mermaid-diagram .section1,
.mermaid-diagram .section3 {
fill: white;
opacity: 0.2;
}
.mermaid-diagram .sectionTitle0 {
fill: #333;
}
.mermaid-diagram .sectionTitle1 {
fill: #333;
}
.mermaid-diagram .sectionTitle2 {
fill: #333;
}
.mermaid-diagram .sectionTitle3 {
fill: #333;
}
.mermaid-diagram .sectionTitle {
text-anchor: start;
font-size: 11px;
text-height: 14px;
}
/* Grid and axis */
.mermaid-diagram .grid .tick {
stroke: lightgrey;
opacity: 0.3;
shape-rendering: crispEdges;
}
.mermaid-diagram .grid path {
stroke-width: 0;
}
/* Today line */
.mermaid-diagram .today {
fill: none;
stroke: red;
stroke-width: 2px;
}
/* Task styling */
/* Default task */
.mermaid-diagram .task {
stroke-width: 2;
}
.mermaid-diagram .taskText {
text-anchor: middle;
font-size: 11px;
}
.mermaid-diagram .taskTextOutsideRight {
fill: black;
text-anchor: start;
font-size: 11px;
}
.mermaid-diagram .taskTextOutsideLeft {
fill: black;
text-anchor: end;
font-size: 11px;
}
/* Specific task settings for the sections*/
.mermaid-diagram .taskText0,
.mermaid-diagram .taskText1,
.mermaid-diagram .taskText2,
.mermaid-diagram .taskText3 {
fill: white;
}
.mermaid-diagram .task0,
.mermaid-diagram .task1,
.mermaid-diagram .task2,
.mermaid-diagram .task3 {
fill: #8a90dd;
stroke: #534fbc;
}
.mermaid-diagram .taskTextOutside0,
.mermaid-diagram .taskTextOutside2 {
fill: black;
}
.mermaid-diagram .taskTextOutside1,
.mermaid-diagram .taskTextOutside3 {
fill: black;
}
/* Active task */
.mermaid-diagram .active0,
.mermaid-diagram .active1,
.mermaid-diagram .active2,
.mermaid-diagram .active3 {
fill: #bfc7ff;
stroke: #534fbc;
}
.mermaid-diagram .activeText0,
.mermaid-diagram .activeText1,
.mermaid-diagram .activeText2,
.mermaid-diagram .activeText3 {
fill: black !important;
}
/* Completed task */
.mermaid-diagram .done0,
.mermaid-diagram .done1,
.mermaid-diagram .done2,
.mermaid-diagram .done3 {
stroke: grey;
fill: lightgrey;
stroke-width: 2;
}
.mermaid-diagram .doneText0,
.mermaid-diagram .doneText1,
.mermaid-diagram .doneText2,
.mermaid-diagram .doneText3 {
fill: black !important;
}
/* Tasks on the critical line */
.mermaid-diagram .crit0,
.mermaid-diagram .crit1,
.mermaid-diagram .crit2,
.mermaid-diagram .crit3 {
stroke: #ff8888;
fill: red;
stroke-width: 2;
}
.mermaid-diagram .activeCrit0,
.mermaid-diagram .activeCrit1,
.mermaid-diagram .activeCrit2,
.mermaid-diagram .activeCrit3 {
stroke: #ff8888;
fill: #bfc7ff;
stroke-width: 2;
}
.mermaid-diagram .doneCrit0,
.mermaid-diagram .doneCrit1,
.mermaid-diagram .doneCrit2,
.mermaid-diagram .doneCrit3 {
stroke: #ff8888;
fill: lightgrey;
stroke-width: 2;
cursor: pointer;
shape-rendering: crispEdges;
}
.mermaid-diagram .doneCritText0,
.mermaid-diagram .doneCritText1,
.mermaid-diagram .doneCritText2,
.mermaid-diagram .doneCritText3 {
fill: black !important;
}
.mermaid-diagram .activeCritText0,
.mermaid-diagram .activeCritText1,
.mermaid-diagram .activeCritText2,
.mermaid-diagram .activeCritText3 {
fill: black !important;
}
.mermaid-diagram .titleText {
text-anchor: middle;
font-size: 18px;
fill: black;
}
.mermaid-diagram .node text {
font-family: 'trebuchet ms', verdana, arial;
font-size: 14px;
}
.mermaid-diagram div.mermaidTooltip {
position: absolute;
text-align: center;
max-width: 200px;
padding: 2px;
font-family: 'trebuchet ms', verdana, arial;
font-size: 12px;
background: #ffffde;
border: 1px solid #aaaa33;
border-radius: 2px;
pointer-events: none;
z-index: 100;
}

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<g>
<polygon fill="#333333" points="128,192 256,320 384,192 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 548 B

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<g>
<polygon fill="#C0C0C0" points="128,192 256,320 384,192 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 548 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(-90 256.00000000000006,256) " id="svg_1">
<polygon fill="#333333" id="svg_2" points="128,192 256,320 384,192 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 2</title>
<rect stroke="null" fill="#E0E0E0" stroke-width="null" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" x="225.3" y="0.100029" width="51" height="281.537138" id="svg_3"/>
<rect fill="#E0E0E0" stroke-width="null" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" x="346.499997" y="116.499998" width="51" height="278.999996" id="svg_6" transform="rotate(90 372,256.00000000000006) " stroke="null"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 588 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 2</title>
<rect stroke="null" fill="#E0E0E0" stroke-width="null" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" x="225.3" y="0.100029" width="51" height="511.910139" id="svg_3"/>
<rect fill="#E0E0E0" stroke-width="null" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" x="346.499997" y="116.499998" width="51" height="278.999996" id="svg_6" transform="rotate(90 372,256.00000000000006) " stroke="null"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 588 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g id="svg_1">
<polygon fill="#333333" id="svg_2" points="128,192 256,320 384,192 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 247 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_6" fill-opacity="0" height="299" width="299" y="106.5" x="106.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="30" stroke="#333333" fill="#000000"/>
<path stroke-opacity="0" id="svg_3" d="m126,243.24589l27.93756,-27.94743l76.53449,76.52461l127.58052,-127.54102l27.94743,27.92768l-155.52795,155.50821" stroke-width="5" fill="#333333" stroke="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 555 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_6" fill-opacity="0" height="299" width="299" y="106.5" x="106.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="30" stroke="#C0C0C0" fill="#000000"/>
<path stroke-opacity="0" id="svg_3" d="m126,243.24589l27.93756,-27.94743l76.53449,76.52461l127.58052,-127.54102l27.94743,27.92768l-155.52795,155.50821" stroke-width="5" fill="#C0C0C0" stroke="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 555 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_6" fill-opacity="0" height="299" width="299" y="106.5" x="106.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="30" stroke="#333333" fill="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 350 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_6" fill-opacity="0" height="299" width="299" y="106.5" x="106.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="30" stroke="#C0C0C0" fill="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 350 B

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#333333" d="M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4
L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1
c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1
c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 995 B

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#9E9E9E" d="M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4
L256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1
c-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1
c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 995 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="null" id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#333333"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 264 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="null" id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#C0C0C0"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 264 B

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#333333" d="M64,144v304h303.9V144H64z M351.9,432H80V160h271.9V432z"/>
<g>
<polygon style="fill:#333333" points="448,64 144,64 144,128 160,128 160,80 432,80 432,352 384,352 384,368 448,368 "/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 715 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(90 255.99999999999997,256.00000000000006) " id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#333333"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 309 B

View File

@@ -0,0 +1,8 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g transform="rotate(90 255.99999999999997,256.00000000000006) " id="svg_1">
<polygon points="128,192 256,320 384,192 " id="svg_2" fill="#C0C0C0"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 309 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 2</title>
<rect stroke="null" id="svg_3" height="510.999989" width="51" y="0.100029" x="225.3" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="null" fill="#E0E0E0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 341 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<path stroke-opacity="0" id="svg_3" d="m126,243.24589l27.93756,-27.94743l76.53449,76.52461l127.58052,-127.54102l27.94743,27.92768l-155.52795,155.50821" stroke-width="5" fill="#333333" stroke="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 353 B

View File

@@ -0,0 +1,6 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#333333" stroke="#000000" stroke-width="20" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" stroke-opacity="0" cx="257.00002" cy="256" r="83.2406" id="svg_11"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 346 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#000000" stroke-width="30" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" fill-opacity="0" cx="256.00001" cy="256.00001" r="142.96561" id="svg_9" stroke="#333333"/>
<circle fill="#333333" stroke="#000000" stroke-width="20" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" stroke-opacity="0" cx="256.00002" cy="256" r="83.2406" id="svg_11"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 549 B

View File

@@ -0,0 +1,7 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<circle fill="#000000" stroke-width="30" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" fill-opacity="0" cx="256.00001" cy="256.00001" r="142.96561" id="svg_9" stroke="#C0C0C0"/>
<circle fill="#C0C0C0" stroke="#000000" stroke-width="20" stroke-dasharray="null" stroke-linejoin="null" stroke-linecap="null" stroke-opacity="0" cx="256.00002" cy="256" r="83.2406" id="svg_11"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 549 B

Some files were not shown because too many files have changed in this diff Show More