@ -0,0 +1,42 @@
|
||||
/* |
||||
* MIT License |
||||
* |
||||
* Copyright (c) 2019 Jannis Weis |
||||
* |
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
* of this software and associated documentation files (the "Software"), to deal |
||||
* in the Software without restriction, including without limitation the rights |
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
* copies of the Software, and to permit persons to whom the Software is |
||||
* furnished to do so, subject to the following conditions: |
||||
* |
||||
* The above copyright notice and this permission notice shall be included in all |
||||
* copies or substantial portions of the Software. |
||||
* |
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
||||
* SOFTWARE. |
||||
*/ |
||||
package com.weis.darklaf.theme; |
||||
|
||||
public class SolarizedDarkTheme extends Theme { |
||||
|
||||
@Override |
||||
protected String getResourcePath() { |
||||
return "solarized_dark/"; |
||||
} |
||||
|
||||
@Override |
||||
public String getName() { |
||||
return "solarized_dark"; |
||||
} |
||||
|
||||
@Override |
||||
public boolean isDark() { |
||||
return true; |
||||
} |
||||
} |
@ -0,0 +1,47 @@
|
||||
/* |
||||
* MIT License |
||||
* |
||||
* Copyright (c) 2019 Jannis Weis |
||||
* |
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
* of this software and associated documentation files (the "Software"), to deal |
||||
* in the Software without restriction, including without limitation the rights |
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
* copies of the Software, and to permit persons to whom the Software is |
||||
* furnished to do so, subject to the following conditions: |
||||
* |
||||
* The above copyright notice and this permission notice shall be included in all |
||||
* copies or substantial portions of the Software. |
||||
* |
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
||||
* SOFTWARE. |
||||
*/ |
||||
package com.weis.darklaf.theme; |
||||
|
||||
public class SolarizedLightTheme extends Theme { |
||||
|
||||
@Override |
||||
public void beforeInstall() { |
||||
throw new UnsupportedThemeException("Currently not finished"); |
||||
} |
||||
|
||||
@Override |
||||
protected String getResourcePath() { |
||||
return "solarized_light/"; |
||||
} |
||||
|
||||
@Override |
||||
public String getName() { |
||||
return "solarized_light"; |
||||
} |
||||
|
||||
@Override |
||||
public boolean isDark() { |
||||
return true; |
||||
} |
||||
} |
@ -0,0 +1,31 @@
|
||||
/* |
||||
* MIT License |
||||
* |
||||
* Copyright (c) 2019 Jannis Weis |
||||
* |
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
* of this software and associated documentation files (the "Software"), to deal |
||||
* in the Software without restriction, including without limitation the rights |
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
* copies of the Software, and to permit persons to whom the Software is |
||||
* furnished to do so, subject to the following conditions: |
||||
* |
||||
* The above copyright notice and this permission notice shall be included in all |
||||
* copies or substantial portions of the Software. |
||||
* |
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
||||
* SOFTWARE. |
||||
*/ |
||||
package com.weis.darklaf.theme; |
||||
|
||||
public class UnsupportedThemeException extends RuntimeException { |
||||
|
||||
public UnsupportedThemeException(final String message) { |
||||
super(message); |
||||
} |
||||
} |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 1011 B After Width: | Height: | Size: 1009 B |
Before Width: | Height: | Size: 1019 B After Width: | Height: | Size: 1017 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,141 @@
|
||||
#MIT License |
||||
# |
||||
#Copyright (c) 2019 Jannis Weis |
||||
# |
||||
#Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
#of this software and associated documentation files (the "Software"), to deal |
||||
#in the Software without restriction, including without limitation the rights |
||||
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
#copies of the Software, and to permit persons to whom the Software is |
||||
#furnished to do so, subject to the following conditions: |
||||
# |
||||
#The above copyright notice and this permission notice shall be included in all |
||||
#copies or substantial portions of the Software. |
||||
# |
||||
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
||||
#SOFTWARE. |
||||
# suppress inspection "UnusedProperty" for whole file |
||||
####Background#### |
||||
%background = 0E3C4A |
||||
%backgroundAlternative = 174351 |
||||
%backgroundColorful = 11435A |
||||
%backgroundContainer = 0E3C4A |
||||
|
||||
%backgroundHeader = 194553 |
||||
%backgroundToolTip = 254C57 |
||||
|
||||
%backgroundHover = 0A2C37 |
||||
%backgroundSelected = 28515E |
||||
%backgroundHoverSecondary = 0C3642 |
||||
%backgroundSelectedSecondary = 092D3A |
||||
%backgroundHoverColorful = 0D3042 |
||||
%backgroundSelectedColorful = 144f6a |
||||
|
||||
%dropBackground = 08323D |
||||
%dropForeground = 999999 |
||||
|
||||
####Border#### |
||||
%border = 284E59 |
||||
%borderSecondary = 11333C |
||||
%borderTertiary = 5B5D5F |
||||
%borderFocus = 1D8AD1 |
||||
%gridLine = 093640 |
||||
|
||||
####Highlight#### |
||||
%hoverHighlight = 264F5B |
||||
%clickHighlight = 39626F |
||||
|
||||
%hoverHighlightColorful = 144F6A |
||||
%clickHighlightColorful = 175C7B |
||||
|
||||
%hoverHighlightDefault = 115D94 |
||||
%clickHighlightDefault = 1368A5 |
||||
|
||||
%hoverHighlightSecondary = 1C3A45 |
||||
%clickHighlightSecondary = 224653 |
||||
|
||||
%highlightFill = 00243C |
||||
%highlightFillFocus = 356AB0 |
||||
%highlightFillFocusSecondary = 3985C7 |
||||
%highlightFillMono = 577A88 |
||||
|
||||
####Widgets#### |
||||
%widgetBorder = 3C626C |
||||
%widgetBorderInactive = 42646D |
||||
%widgetBorderDefault = 2D6D90 |
||||
%widgetFill = 264F5B |
||||
%widgetFillSelected = 1B4854 |
||||
%widgetFillInactive = 0E3C4A |
||||
%widgetFillDefault = 0F5282 |
||||
|
||||
####Controls#### |
||||
%controlBorder = 42646D |
||||
%controlBorderDisabled = 3C626C |
||||
%controlBorderSelected = 42646D |
||||
%controlBorderFocus = 296996 |
||||
%controlBorderFocusSelected = 296996 |
||||
%controlBorderSecondary = 102F37 |
||||
%controlFill = ACBCC0 |
||||
%controlFillFocus = ACBCC0 |
||||
%controlFillSecondary = 8EA1A8 |
||||
%controlTrack = 628A9F |
||||
%controlFillDisabled = 60767D |
||||
%controlFillHighlight = 3985C7 |
||||
%controlFillHighlightDisabled = 00243C |
||||
%controlBackground = 2F535F |
||||
%controlFadeStart = 476971 |
||||
%controlFadeEnd = 67848C |
||||
%controlErrorFadeStart = DE4647 |
||||
%controlErrorFadeEnd = EFA0A0 |
||||
%controlPassedFadeStart = 008A4B |
||||
%controlPassedFadeEnd = 4FC392 |
||||
|
||||
####Text#### |
||||
%caret = A7B6BA |
||||
%textForeground = A7B6BA |
||||
%textForegroundDefault = A7B6BA |
||||
%textForegroundHighlight = EEE8D5 |
||||
%textForegroundInactive = 839496 |
||||
%textForegroundSecondary = 839496 |
||||
%acceleratorForeground = 527FBF |
||||
|
||||
%textSelectionForeground = ACBCC0 |
||||
%textSelectionForegroundInactive = A7B6BA |
||||
%textSelectionBackground = 356AB0 |
||||
#currentLineBackground |
||||
%textSelectionBackgroundSecondary = 08323D |
||||
%textBackground = 1B4854 |
||||
%textBackgroundInactive = 0E3C4A |
||||
%textBackgroundSecondary = 002B36 |
||||
#Editor number pane |
||||
%textBackgroundSecondaryInactive = 073642 |
||||
|
||||
%hyperlink = 589df6 |
||||
|
||||
####Misc#### |
||||
%shadow = 000000 |
||||
%glowFocus = 3c84c7 |
||||
%glowFocusLine = 296996 |
||||
|
||||
%glowError = 53515A |
||||
%glowErrorLine = 564755 |
||||
|
||||
%glowFocusError = 743D44 |
||||
%glowFocusErrorLine = 564755 |
||||
|
||||
%glowWarning = 9A7926 |
||||
%glowWarningLine = 93A16A |
||||
|
||||
#Arc |
||||
%arc = 5 |
||||
%arcFocus = 5 |
||||
%arcSecondary = 3 |
||||
%arcSecondaryFocus = 3 |
||||
|
||||
%borderThickness = 3 |
||||
%shadowHeight = 3 |
@ -0,0 +1,337 @@
|
||||
/* |
||||
* Copyright 2000-2014 JetBrains s.r.o. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0 |
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
body { |
||||
font-size: 14pt; |
||||
font-family: Serif, serif; |
||||
font-weight: normal; |
||||
margin-left: 0; |
||||
margin-right: 0; |
||||
color: #bbbbbb; |
||||
} |
||||
|
||||
p { |
||||
margin-top: 15px; |
||||
} |
||||
|
||||
h1 { |
||||
font-size: x-large; |
||||
font-weight: bold; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
h2 { |
||||
font-size: large; |
||||
font-weight: bold; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
h3 { |
||||
font-size: medium; |
||||
font-weight: bold; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
h4 { |
||||
font-size: small; |
||||
font-weight: bold; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
h5 { |
||||
font-size: x-small; |
||||
font-weight: bold; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
h6 { |
||||
font-size: xx-small; |
||||
font-weight: bold; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
li p { |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
td p { |
||||
margin-top: 0; |
||||
} |
||||
|
||||
menu li p { |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
menu li { |
||||
margin: 0; |
||||
} |
||||
|
||||
menu { |
||||
margin-left-ltr: 40px; |
||||
margin-right-rtl: 40px; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
dir li p { |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
dir li { |
||||
margin: 0; |
||||
} |
||||
|
||||
dir { |
||||
margin-left-ltr: 40px; |
||||
margin-right-rtl: 40px; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
dd { |
||||
margin-left-ltr: 40px; |
||||
margin-right-rtl: 40px; |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
dd p { |
||||
margin: 0; |
||||
} |
||||
|
||||
dt { |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
dl { |
||||
margin-left: 0; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
ol li { |
||||
margin: 0; |
||||
} |
||||
|
||||
ol { |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
margin-left-ltr: 50px; |
||||
margin-right-rtl: 50px; |
||||
list-style-type: decimal; |
||||
} |
||||
|
||||
ol li p { |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
ul li { |
||||
margin: 0; |
||||
} |
||||
|
||||
ul { |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
margin-left-ltr: 50px; |
||||
margin-right-rtl: 50px; |
||||
list-style-type: disc; |
||||
-bullet-gap: 10px; |
||||
} |
||||
|
||||
ul li ul li { |
||||
margin: 0; |
||||
} |
||||
|
||||
ul li ul { |
||||
list-style-type: circle; |
||||
margin-left-ltr: 25px; |
||||
margin-right-rtl: 25px; |
||||
} |
||||
|
||||
ul li ul li ul li { |
||||
margin: 0; |
||||
} |
||||
|
||||
ul li ul li ul { |
||||
list-style-type: square; |
||||
margin-left-ltr: 25px; |
||||
margin-right-rtl: 25px; |
||||
} |
||||
|
||||
ul li menu { |
||||
list-style-type: circle; |
||||
margin-left-ltr: 25px; |
||||
margin-right-rtl: 25px; |
||||
} |
||||
|
||||
ul li p { |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
a { |
||||
color: #589df6; |
||||
text-decoration: underline; |
||||
} |
||||
|
||||
address { |
||||
color: #589df6; |
||||
font-style: italic; |
||||
} |
||||
|
||||
big { |
||||
font-size: x-large; |
||||
} |
||||
|
||||
small { |
||||
font-size: x-small; |
||||
} |
||||
|
||||
samp { |
||||
font-size: small; |
||||
font-family: Monospaced, monospace; |
||||
} |
||||
|
||||
cite { |
||||
font-style: italic; |
||||
} |
||||
|
||||
code { |
||||
font-size: small; |
||||
font-family: Monospaced, monospace; |
||||
} |
||||
|
||||
dfn { |
||||
font-style: italic; |
||||
} |
||||
|
||||
em { |
||||
font-style: italic; |
||||
} |
||||
|
||||
i { |
||||
font-style: italic; |
||||
} |
||||
|
||||
b { |
||||
font-weight: bold; |
||||
} |
||||
|
||||
kbd { |
||||
font-size: small; |
||||
font-family: Monospaced, monospace; |
||||
} |
||||
|
||||
s { |
||||
text-decoration: line-through; |
||||
} |
||||
|
||||
strike { |
||||
text-decoration: line-through; |
||||
} |
||||
|
||||
strong { |
||||
font-weight: bold; |
||||
} |
||||
|
||||
sub { |
||||
vertical-align: sub; |
||||
} |
||||
|
||||
sup { |
||||
vertical-align: sub; |
||||
} |
||||
|
||||
tt { |
||||
font-family: Monospaced, monospace; |
||||
} |
||||
|
||||
u { |
||||
text-decoration: underline; |
||||
} |
||||
|
||||
var { |
||||
font-weight: bold; |
||||
font-style: italic; |
||||
} |
||||
|
||||
table { |
||||
border-color: Gray; |
||||
border-style: outset; |
||||
} |
||||
|
||||
tr { |
||||
text-align: left; |
||||
} |
||||
|
||||
td { |
||||
border-color: Gray; |
||||
border-style: inset; |
||||
padding: 3px; |
||||
} |
||||
|
||||
th { |
||||
text-align: center; |
||||
font-weight: bold; |
||||
border-color: Gray; |
||||
border-style: inset; |
||||
padding: 3px; |
||||
} |
||||
|
||||
blockquote { |
||||
margin: 5px 35px; |
||||
} |
||||
|
||||
center { |
||||
text-align: center; |
||||
} |
||||
|
||||
pre { |
||||
margin-top: 5px; |
||||
margin-bottom: 5px; |
||||
font-family: Monospaced, monospace; |
||||
} |
||||
|
||||
pre p { |
||||
margin-top: 0; |
||||
} |
||||
|
||||
caption { |
||||
caption-side: top; |
||||
text-align: center; |
||||
} |
||||
|
||||
table { |
||||
border: none; |
||||
} |
||||
|
||||
td { |
||||
border: none; |
||||
} |
||||
|
||||
nobr { |
||||
white-space: nowrap; |
||||
} |
@ -0,0 +1,142 @@
|
||||
#MIT License |
||||
# |
||||
#Copyright (c) 2019 Jannis Weis |
||||
# |
||||
#Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
#of this software and associated documentation files (the "Software"), to deal |
||||
#in the Software without restriction, including without limitation the rights |
||||
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
#copies of the Software, and to permit persons to whom the Software is |
||||
#furnished to do so, subject to the following conditions: |
||||
# |
||||
#The above copyright notice and this permission notice shall be included in all |
||||
#copies or substantial portions of the Software. |
||||
# |
||||
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
||||
#SOFTWARE. |
||||
# suppress inspection "UnusedProperty" for whole file |
||||
####Background#### |
||||
%background = 3c3f41 |
||||
%backgroundAlternative = 414547 |
||||
%backgroundColorful = 3B4754 |
||||
%backgroundContainer = 3c3f41 |
||||
|
||||
%backgroundHeader = 45484a |
||||
%backgroundToolTip = 4b4d4d |
||||
|
||||
%backgroundHover = 27292a |
||||
%backgroundSelected = 4e5254 |
||||
%backgroundHoverSecondary = 353739 |
||||
%backgroundSelectedSecondary = 2d2f30 |
||||
%backgroundHoverColorful = 262D36 |
||||
%backgroundSelectedColorful = 313A45 |
||||
|
||||
%dropBackground = 4b4b4b |
||||
%dropForeground = 999999 |
||||
|
||||
####Border#### |
||||
%border = 555555 |
||||
%borderSecondary = 333638 |
||||
%borderTertiary = 5b5d5f |
||||
%borderFocus = 79c0ff |
||||
%gridLine = 4f5152 |
||||
|
||||
####Highlight#### |
||||
%hoverHighlight = 4c5052 |
||||
%clickHighlight = 5c6164 |
||||
|
||||
%hoverHighlightColorful = 2F3A45 |
||||
%clickHighlightColorful = 2B353F |
||||
|
||||
%hoverHighlightDefault = 406086 |
||||
%clickHighlightDefault = 4a688c |
||||
|
||||
%hoverHighlightSecondary = 333537 |
||||
%clickHighlightSecondary = 2a2b2d |
||||
|
||||
%highlightFill = 0d293e |
||||
%highlightFillFocus = 4b6eaf |
||||
%highlightFillFocusSecondary = 4A88C7 |
||||
%highlightFillMono = 747a80 |
||||
|
||||
####Widgets#### |
||||
%widgetBorder = 6b6b6b |
||||
%widgetBorderInactive = 535353 |
||||
%widgetBorderDefault = 4c708c |
||||
%widgetFill = 43494a |
||||
%widgetFillSelected = 43494a |
||||
%widgetFillInactive = 3c3f41 |
||||
%widgetFillDefault = 365880 |
||||
|
||||
####Controls#### |
||||
%controlBorder = 6b6b6b |
||||
%controlBorderDisabled = 545556 |
||||
%controlBorderSelected = 6B6B6B |
||||
%controlBorderFocus = 466D94 |
||||
%controlBorderFocusSelected = 466D94 |
||||
%controlBorderSecondary = 424242 |
||||
%controlFill = A0A0A0 |
||||
%controlFillFocus = A0A0A0 |
||||
%controlFillSecondary = A0A0A0 |
||||
%controlTrack = 636869 |
||||
%controlFillDisabled = 606060 |
||||
%controlFillHighlight = 5394ec |
||||
%controlFillHighlightDisabled = 475b81 |
||||
%controlBackground = 555555 |
||||
%controlFadeStart = 696969 |
||||
%controlFadeEnd = 838383 |
||||
%controlErrorFadeStart = e74848 |
||||
%controlErrorFadeEnd = f4a2a0 |
||||
%controlPassedFadeStart = 008f50 |
||||
%controlPassedFadeEnd = 5dc48f |
||||
|
||||
####Text#### |
||||
%caret = bbbbbb |
||||
%textForeground = bbbbbb |
||||
%textForegroundDefault = bbbbbb |
||||
%textForegroundHighlight = DDDDDD |
||||
%textForegroundInactive = 777777 |
||||
%textForegroundSecondary = 919191 |
||||
%acceleratorForeground = eeeeee |
||||
|
||||
%textSelectionForeground = bbbbbb |
||||
%textSelectionForegroundInactive = bbbbbb |
||||
%textSelectionBackground = 214283 |
||||
#currentLineBackground |
||||
%textSelectionBackgroundSecondary = 323232 |
||||
%textBackground = 45494a |
||||
%textBackgroundInactive = 3c3f41 |
||||
%textBackgroundSecondary = 2B2B2B |
||||
#Editor number pane |
||||
%textBackgroundSecondaryInactive = 313335 |
||||
|
||||
%hyperlink = 589df6 |
||||
|
||||
####Misc#### |
||||
#Todo Line Colors |
||||
%shadow = 000000 |
||||
%glowFocus = 3e84c9 |
||||
%glowFocusLine = 466D94 |
||||
|
||||
%glowError = cf6767 |
||||
%glowErrorLine = 73454B |
||||
|
||||
%glowFocusError = c2413c |
||||
%glowFocusErrorLine = 73454B |
||||
|
||||
%glowWarning = ac7920 |
||||
%glowWarningLine = 6e5324 |
||||
|
||||
#Arc |
||||
%arc = 5 |
||||
%arcFocus = 5 |
||||
%arcSecondary = 3 |
||||
%arcSecondaryFocus = 3 |
||||
|
||||
%borderThickness = 3 |
||||
%shadowHeight = 3 |
@ -0,0 +1,345 @@
|
||||
/* |
||||
* MIT License |
||||
* |
||||
* Copyright (c) 2019 Jannis Weis |
||||
* |
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
* of this software and associated documentation files (the "Software"), to deal |
||||
* in the Software without restriction, including without limitation the rights |
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
* copies of the Software, and to permit persons to whom the Software is |
||||
* furnished to do so, subject to the following conditions: |
||||
* |
||||
* The above copyright notice and this permission notice shall be included in all |
||||
* copies or substantial portions of the Software. |
||||
* |
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
||||
* SOFTWARE. |
||||
*/ |
||||
body { |
||||
font-size: 14pt; |
||||
font-family: Serif, serif; |
||||
font-weight: normal; |
||||
margin-left: 0; |
||||
margin-right: 0; |
||||
color: #000000; |
||||
} |
||||
|
||||
p { |
||||
margin-top: 15px; |
||||
} |
||||
|
||||
h1 { |
||||
font-size: x-large; |
||||
font-weight: bold; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
h2 { |
||||
font-size: large; |
||||
font-weight: bold; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
h3 { |
||||
font-size: medium; |
||||
font-weight: bold; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
h4 { |
||||
font-size: small; |
||||
font-weight: bold; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
h5 { |
||||
font-size: x-small; |
||||
font-weight: bold; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
h6 { |
||||
font-size: xx-small; |
||||
font-weight: bold; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
li p { |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
td p { |
||||
margin-top: 0; |
||||
} |
||||
|
||||
menu li p { |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
menu li { |
||||
margin: 0; |
||||
} |
||||
|
||||
menu { |
||||
margin-left-ltr: 40px; |
||||
margin-right-rtl: 40px; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
dir li p { |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
dir li { |
||||
margin: 0; |
||||
} |
||||
|
||||
dir { |
||||
margin-left-ltr: 40px; |
||||
margin-right-rtl: 40px; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
dd { |
||||
margin-left-ltr: 40px; |
||||
margin-right-rtl: 40px; |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
dd p { |
||||
margin: 0; |
||||
} |
||||
|
||||
dt { |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
dl { |
||||
margin-left: 0; |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
|
||||
ol li { |
||||
margin: 0; |
||||
} |
||||
|
||||
ol { |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
margin-left-ltr: 50px; |
||||
margin-right-rtl: 50px; |
||||
list-style-type: decimal; |
||||
} |
||||
|
||||
ol li p { |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
ul li { |
||||
margin: 0; |
||||
} |
||||
|
||||
ul { |
||||
margin-top: 10px; |
||||
margin-bottom: 10px; |
||||
margin-left-ltr: 50px; |
||||
margin-right-rtl: 50px; |
||||
list-style-type: disc; |
||||
-bullet-gap: 10px; |
||||
} |
||||
|
||||
ul li ul li { |
||||
margin: 0; |
||||
} |
||||
|
||||
ul li ul { |
||||
list-style-type: circle; |
||||
margin-left-ltr: 25px; |
||||
margin-right-rtl: 25px; |
||||
} |
||||
|
||||
ul li ul li ul li { |
||||
margin: 0; |
||||
} |
||||
|
||||
ul li ul li ul { |
||||
list-style-type: square; |
||||
margin-left-ltr: 25px; |
||||
margin-right-rtl: 25px; |
||||
} |
||||
|
||||
ul li menu { |
||||
list-style-type: circle; |
||||
margin-left-ltr: 25px; |
||||
margin-right-rtl: 25px; |
||||
} |
||||
|
||||
ul li p { |
||||
margin-top: 0; |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
a { |
||||
color: #589df6; |
||||
text-decoration: underline; |
||||
} |
||||
|
||||
address { |
||||
color: #589df6; |
||||
font-style: italic; |
||||
} |
||||
|
||||
big { |
||||
font-size: x-large; |
||||
} |
||||
|
||||
small { |
||||
font-size: x-small; |
||||
} |
||||
|
||||
samp { |
||||
font-size: small; |
||||
font-family: Monospaced, monospace; |
||||
} |
||||
|
||||
cite { |
||||
font-style: italic; |
||||
} |
||||
|
||||
code { |
||||
font-size: small; |
||||
font-family: Monospaced, monospace; |
||||
} |
||||
|
||||
dfn { |
||||
font-style: italic; |
||||
} |
||||
|
||||
em { |
||||
font-style: italic; |
||||
} |
||||
|
||||
i { |
||||
font-style: italic; |
||||
} |
||||
|
||||
b { |
||||
font-weight: bold; |
||||
} |
||||
|
||||
kbd { |
||||
font-size: small; |
||||
font-family: Monospaced, monospace; |
||||
} |
||||
|
||||
s { |
||||
text-decoration: line-through; |
||||
} |
||||
|
||||
strike { |
||||
text-decoration: line-through; |
||||
} |
||||
|
||||
strong { |
||||
font-weight: bold; |
||||
} |
||||
|
||||
sub { |
||||
vertical-align: sub; |
||||
} |
||||
|
||||
sup { |
||||
vertical-align: sub; |
||||
} |
||||
|
||||
tt { |
||||
font-family: Monospaced, monospace; |
||||
} |
||||
|
||||
u { |
||||
text-decoration: underline; |
||||
} |
||||
|
||||
var { |
||||
font-weight: bold; |
||||
font-style: italic; |
||||
} |
||||
|
||||
table { |
||||
border-color: Gray; |
||||
border-style: outset; |
||||
} |
||||
|
||||
tr { |
||||
text-align: left; |
||||
} |
||||
|
||||
td { |
||||
border-color: Gray; |
||||
border-style: inset; |
||||
padding: 3px; |
||||
} |
||||
|
||||
th { |
||||
text-align: center; |
||||
font-weight: bold; |
||||
border-color: Gray; |
||||
border-style: inset; |
||||
padding: 3px; |
||||
} |
||||
|
||||
blockquote { |
||||
margin: 5px 35px; |
||||
} |
||||
|
||||
center { |
||||
text-align: center; |
||||
} |
||||
|
||||
pre { |
||||
margin-top: 5px; |
||||
margin-bottom: 5px; |
||||
font-family: Monospaced, monospace; |
||||
} |
||||
|
||||
pre p { |
||||
margin-top: 0; |
||||
} |
||||
|
||||
caption { |
||||
caption-side: top; |
||||
text-align: center; |
||||
} |
||||
|
||||
table { |
||||
border: none; |
||||
} |
||||
|
||||
td { |
||||
border: none; |
||||
} |
||||
|
||||
nobr { |
||||
white-space: nowrap; |
||||
} |