Added a set of simple icons for dark theme
@@ -143,6 +143,14 @@ class Theme:
|
|||||||
logger.error("Could not load theme css file")
|
logger.error("Could not load theme css file")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
# Icon Files
|
||||||
|
iconsDir = path.join(self.themePath,self.iconPath)
|
||||||
|
if path.isdir(iconsDir):
|
||||||
|
for iconName in self.ICON_MAP:
|
||||||
|
iconFile = path.join(iconsDir,iconName+".png")
|
||||||
|
if path.isfile(iconFile):
|
||||||
|
self.themeIcons[iconName] = QIcon(iconFile)
|
||||||
|
|
||||||
# Config File
|
# Config File
|
||||||
confParser = configparser.ConfigParser()
|
confParser = configparser.ConfigParser()
|
||||||
try:
|
try:
|
||||||
|
|||||||
|
After Width: | Height: | Size: 225 B |
|
After Width: | Height: | Size: 296 B |
|
After Width: | Height: | Size: 256 B |
|
After Width: | Height: | Size: 280 B |
|
After Width: | Height: | Size: 552 B |
|
After Width: | Height: | Size: 204 B |
|
After Width: | Height: | Size: 338 B |
|
After Width: | Height: | Size: 357 B |
|
After Width: | Height: | Size: 295 B |
|
After Width: | Height: | Size: 563 B |
|
After Width: | Height: | Size: 487 B |
@@ -5,23 +5,23 @@ credit = Veronica Berglyd Olsen
|
|||||||
url = https://github.com/vkbo/novelWriter
|
url = https://github.com/vkbo/novelWriter
|
||||||
|
|
||||||
[Palette]
|
[Palette]
|
||||||
window = 54, 54, 54
|
window = 54, 54, 54
|
||||||
windowtext = 174, 174, 174
|
windowtext = 174, 174, 174
|
||||||
base = 62, 62, 62
|
base = 62, 62, 62
|
||||||
alternatebase = 67, 67, 67
|
alternatebase = 67, 67, 67
|
||||||
text = 174, 174, 174
|
text = 174, 174, 174
|
||||||
tooltipbase = 255, 255, 192
|
tooltipbase = 255, 255, 192
|
||||||
tooltiptext = 21, 21, 13
|
tooltiptext = 21, 21, 13
|
||||||
button = 62, 62, 62
|
button = 62, 62, 62
|
||||||
buttontext = 174, 174, 174
|
buttontext = 174, 174, 174
|
||||||
brighttext = 174, 174, 174
|
brighttext = 174, 174, 174
|
||||||
highlight = 44, 152, 247
|
highlight = 44, 152, 247
|
||||||
highlightedtex = 255, 255, 255
|
highlightedtext = 255, 255, 255
|
||||||
link = 44, 152, 247
|
link = 44, 152, 247
|
||||||
linkvisited = 44, 152, 247
|
linkvisited = 44, 152, 247
|
||||||
|
|
||||||
[GUI]
|
[GUI]
|
||||||
treewordcount = 197, 200, 198
|
treewordcount = 197, 200, 198
|
||||||
statusnone = 150, 152, 150
|
statusnone = 150, 152, 150
|
||||||
statussaved = 39, 135, 78
|
statussaved = 39, 135, 78
|
||||||
statusunsaved = 138, 32, 32
|
statusunsaved = 138, 32, 32
|
||||||
|
|||||||