mirror of https://github.com/weisJ/darklaf.git
Browse Source
Fixed painting issues in NumberingPane. Fixed tableheader foreground not being respected. Added inactive focus glow color (for now this only applies to text fields as they are the only component with a focus border that have #setEditable). Added light high contrast theme.pull/127/head
weisj
5 years ago
30 changed files with 853 additions and 87 deletions
@ -0,0 +1,77 @@ |
|||||||
|
/* |
||||||
|
* MIT License |
||||||
|
* |
||||||
|
* Copyright (c) 2020 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.github.weisj.darklaf.theme; |
||||||
|
|
||||||
|
import javax.swing.*; |
||||||
|
import java.util.Properties; |
||||||
|
|
||||||
|
public class HighContrastLightTheme extends Theme { |
||||||
|
|
||||||
|
@Override |
||||||
|
protected IconTheme getPresetIconTheme() { |
||||||
|
return IconTheme.LIGHT; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getPrefix() { |
||||||
|
return "high_contrast_light"; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected String getResourcePath() { |
||||||
|
return "high_contrast_light/"; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getName() { |
||||||
|
return "High Contrast Light"; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected Class<? extends Theme> getLoaderClass() { |
||||||
|
return HighContrastLightTheme.class; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public boolean isDark() { |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public boolean isHighContrast() { |
||||||
|
return true; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void loadUIProperties(final Properties properties, final UIDefaults currentDefaults) { |
||||||
|
super.loadUIProperties(properties, currentDefaults); |
||||||
|
loadCustomProperties("ui", properties, currentDefaults); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void loadPlatformProperties(final Properties properties, final UIDefaults currentDefaults) { |
||||||
|
super.loadPlatformProperties(properties, currentDefaults); |
||||||
|
loadCustomProperties("platform", properties, currentDefaults); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,157 @@ |
|||||||
|
#MIT License |
||||||
|
# |
||||||
|
#Copyright (c) 2020 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 |
||||||
|
Theme.dark = false |
||||||
|
Theme.highContrast = true |
||||||
|
|
||||||
|
####Background#### |
||||||
|
%background = FFFFFF |
||||||
|
%backgroundAlternative = CCCCFF |
||||||
|
%backgroundColorful = D18CFF |
||||||
|
%backgroundColorfulInactive = DACCE5 |
||||||
|
%backgroundContainer = FFFFFF |
||||||
|
|
||||||
|
%backgroundHeader = 7F7FFF |
||||||
|
%backgroundToolTip = ebccff |
||||||
|
%backgroundToolTipInactive = DACCE5 |
||||||
|
|
||||||
|
%backgroundHover = 7FD7F0 |
||||||
|
%backgroundSelected = FFFFFF |
||||||
|
%backgroundHoverSecondary = 0000CC |
||||||
|
%backgroundSelectedSecondary = 0000CC |
||||||
|
%backgroundHoverColorful = A426FF |
||||||
|
%backgroundSelectedColorful = A426FF |
||||||
|
|
||||||
|
%dropBackground = 000000 |
||||||
|
%dropForeground = 00EAFF |
||||||
|
|
||||||
|
####Border#### |
||||||
|
%borderSecondary = 191919 |
||||||
|
%border = 4C4C4C |
||||||
|
%borderTertiary = 191919 |
||||||
|
%borderFocus = 00D1E5 |
||||||
|
%gridLine = 191919 |
||||||
|
|
||||||
|
####Highlight#### |
||||||
|
%hoverHighlight = E6E6E6 |
||||||
|
%clickHighlight = D2D2D2 |
||||||
|
|
||||||
|
%hoverHighlightOutline = 1AD6E8 |
||||||
|
%clickHighlightOutline = 198fb3 |
||||||
|
|
||||||
|
%hoverHighlightColorful = A426FF |
||||||
|
%clickHighlightColorful = C826FF |
||||||
|
|
||||||
|
%hoverHighlightDefault = 1AD6E8 |
||||||
|
%clickHighlightDefault = 00D1E5 |
||||||
|
|
||||||
|
%hoverHighlightSecondary = 0000CC |
||||||
|
%clickHighlightSecondary = 0000CC |
||||||
|
|
||||||
|
%highlightFill = B0B0BD |
||||||
|
%highlightFillFocus = 0000CC |
||||||
|
%highlightFillFocusSecondary = 00D1E5 |
||||||
|
%highlightFillMono = 00D1E5 |
||||||
|
|
||||||
|
####Widgets#### |
||||||
|
%widgetBorder = 000000 |
||||||
|
%widgetBorderInactive = ea9c43 |
||||||
|
%widgetBorderDefault = 00D1E5 |
||||||
|
%widgetFill = FFFFFF |
||||||
|
%widgetFillSelected = FFFFFF |
||||||
|
%widgetFillInactive = FFFFFF |
||||||
|
%widgetFillDefault = 00D1E5 |
||||||
|
|
||||||
|
####Controls#### |
||||||
|
%controlBorder = 000000 |
||||||
|
%controlBorderDisabled = ea9c43 |
||||||
|
%controlBorderSelected = 000000 |
||||||
|
%controlBorderFocus = 00D1E5 |
||||||
|
%controlBorderFocusSelected = 00D1E5 |
||||||
|
%controlBorderSecondary = FFFFFF |
||||||
|
%controlFill = 000000 |
||||||
|
%controlFillFocus = 000000 |
||||||
|
%controlFillSecondary = 000000 |
||||||
|
%controlTrack = 191919 |
||||||
|
%controlFillDisabled = ea9c43 |
||||||
|
%controlFillHighlight = 0000CC |
||||||
|
%controlFillHighlightDisabled = B0B0BD |
||||||
|
%controlBackground = BFBFBF |
||||||
|
%controlFadeStart = 000000 |
||||||
|
%controlFadeEnd = E5E5E5 |
||||||
|
%controlErrorFadeStart = E6194B |
||||||
|
%controlErrorFadeEnd = E3BCC7 |
||||||
|
%controlPassedFadeStart = 19FF38 |
||||||
|
%controlPassedFadeEnd = BAEAC3 |
||||||
|
|
||||||
|
####Text#### |
||||||
|
%caret = 000000 |
||||||
|
%textForeground = 000000 |
||||||
|
%textForegroundDefault = FFFFFF |
||||||
|
%textForegroundHighlight = 000000 |
||||||
|
%textForegroundInactive = E0861F |
||||||
|
%textForegroundSecondary = 666666 |
||||||
|
%acceleratorForeground = 191919 |
||||||
|
%textContrastForeground = FFFFFF |
||||||
|
|
||||||
|
%textSelectionForeground = FFFFFF |
||||||
|
%textSelectionForegroundInactive = 000000 |
||||||
|
%textSelectionForegroundDisabled = E0861F |
||||||
|
%textSelectionBackground = 00b0e6 |
||||||
|
%textSelectionBackgroundSecondary = 9999FF |
||||||
|
%textBackground = FFFFFF |
||||||
|
%textBackgroundInactive = FFFFFF |
||||||
|
%textBackgroundSecondary = EBEBEC |
||||||
|
%textBackgroundSecondaryInactive = EBEBEC |
||||||
|
|
||||||
|
%hyperlink = 00D1E5 |
||||||
|
|
||||||
|
####Misc#### |
||||||
|
%shadow = 000000 |
||||||
|
|
||||||
|
%glowOpacity = 100 |
||||||
|
%dropOpacity = 50 |
||||||
|
%shadowOpacity = 0 |
||||||
|
|
||||||
|
%glowFocus = 00D1E5 |
||||||
|
%glowFocusInactive = ea9c43 |
||||||
|
%glowFocusLine = 00D1E5 |
||||||
|
%glowFocusLineInactive = ea9c43 |
||||||
|
|
||||||
|
%glowError = FF7F81 |
||||||
|
%glowErrorLine = E6194B |
||||||
|
|
||||||
|
%glowFocusError = E6194B |
||||||
|
%glowFocusErrorLine = E6194B |
||||||
|
|
||||||
|
%glowWarning = CE5B0A |
||||||
|
%glowWarningLine = CE5B0A |
||||||
|
|
||||||
|
#Arc |
||||||
|
%arc = 5 |
||||||
|
%arcFocus = 5 |
||||||
|
%arcSecondary = 3 |
||||||
|
%arcSecondaryFocus = 3 |
||||||
|
|
||||||
|
%borderThickness = 3 |
||||||
|
%shadowHeight = 3 |
@ -0,0 +1,47 @@ |
|||||||
|
# |
||||||
|
# MIT License |
||||||
|
# |
||||||
|
# Copyright (c) 2020 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 |
||||||
|
%menuIconEnabled = 000000 |
||||||
|
%menuIconHovered = FFFFFF |
||||||
|
%menuIconSelected = 000000 |
||||||
|
%menuIconSelectedSecondary = 000000 |
||||||
|
%menuIconDisabled = ea9c43 |
||||||
|
%menuIconHighlight = 00D1E5 |
||||||
|
|
||||||
|
%fileIconBackground = 000000 |
||||||
|
%fileIconForeground = FFFFFF |
||||||
|
%fileIconHighlight = 26d94a |
||||||
|
|
||||||
|
%textIconEnabled = 000000 |
||||||
|
%textIconDisabled = E0861F |
||||||
|
%textIconSelected = 000000 |
||||||
|
|
||||||
|
%windowButton = 000000 |
||||||
|
%windowButtonDisabled = 666666 |
||||||
|
%windowCloseHovered = FFFFFF |
||||||
|
|
||||||
|
%errorIconColor = E6194B |
||||||
|
%informationIconColor = 26d94a |
||||||
|
%warningIconColor = CE5B0A |
||||||
|
%questionIconColor = 26d94a |
@ -0,0 +1,34 @@ |
|||||||
|
# |
||||||
|
# MIT License |
||||||
|
# |
||||||
|
# Copyright (c) 2020 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 |
||||||
|
|
||||||
|
###Windows### |
||||||
|
Windows.TitlePane.inactiveBackgroundHover = dbcbb8 |
||||||
|
Windows.TitlePane.inactiveBackgroundClick = 594B39 |
||||||
|
Windows.TitlePane.inactiveBackground = c5b7a5 |
||||||
|
Windows.TitlePane.inactiveForeground = %textForegroundSecondary |
||||||
|
|
||||||
|
###MacOS### |
||||||
|
MacOS.TitlePane.inactiveBackground = c5b7a5 |
||||||
|
MacOS.TitlePane.inactiveForeground = %textForegroundSecondary |
@ -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: #FFFFFF; |
||||||
|
} |
||||||
|
|
||||||
|
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: #00D1E5; |
||||||
|
text-decoration: underline; |
||||||
|
} |
||||||
|
|
||||||
|
address { |
||||||
|
color: #00D1E5; |
||||||
|
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: Black; |
||||||
|
border-style: outset; |
||||||
|
} |
||||||
|
|
||||||
|
tr { |
||||||
|
text-align: left; |
||||||
|
} |
||||||
|
|
||||||
|
td { |
||||||
|
border-color: Black; |
||||||
|
border-style: inset; |
||||||
|
padding: 3px; |
||||||
|
} |
||||||
|
|
||||||
|
th { |
||||||
|
text-align: center; |
||||||
|
font-weight: bold; |
||||||
|
border-color: Black; |
||||||
|
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,32 @@ |
|||||||
|
# |
||||||
|
# MIT License |
||||||
|
# |
||||||
|
# Copyright (c) 2020 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 |
||||||
|
ColorChooser.swatchesDefaultRecentColor = FFFFFF |
||||||
|
Button.borderless.drawOutline = true |
||||||
|
ToolTip.paintShadow = false |
||||||
|
TableHeader.foreground = FFFFFF |
||||||
|
TabbedPane.selectedHoverBackground = %backgroundHover |
||||||
|
TabFrameTab.selectedForeground = %textSelectionForeground |
||||||
|
TabFrameTab.hoverForeground = %textSelectionForeground |
||||||
|
ScrollBar.fadeEndColor = %ScrollBar.fadeStartColor |
Loading…
Reference in new issue