├── src ├── KvYaru-AmberLight ├── KvYaru-AquaLight ├── KvYaru-BaseLight ├── KvYaru-BlueLight ├── KvYaru-BrownLight ├── KvYaru-GreenLight ├── KvYaru-GreyLight ├── KvYaru-MATELight ├── KvYaru-PinkLight ├── KvYaru-RedLight ├── KvYaru-RemixLight ├── KvYaru-TealLight ├── KvYaru-AdwaitaLight ├── KvYaru-OrangeLight ├── KvYaru-PurpleLight ├── KvYaru-YellowLight ├── KvYaru-CinnamonLight ├── KvYaru-DeepblueLight ├── KvYaru-Red │ ├── KvYaru-RedLight.svg │ └── KvYaru-RedDark.kvconfig ├── KvYaru-Aqua │ ├── KvYaru-AquaLight.svg │ └── KvYaru-AquaDark.kvconfig ├── KvYaru-Base │ ├── KvYaru-BaseLight.svg │ └── KvYaru-BaseDark.kvconfig ├── KvYaru-Blue │ ├── KvYaru-BlueLight.svg │ └── KvYaru-BlueDark.kvconfig ├── KvYaru-Grey │ ├── KvYaru-GreyLight.svg │ └── KvYaru-GreyDark.kvconfig ├── KvYaru-MATE │ ├── KvYaru-MATELight.svg │ └── KvYaru-MATEDark.kvconfig ├── KvYaru-Pink │ ├── KvYaru-PinkLight.svg │ └── KvYaru-PinkDark.kvconfig ├── KvYaru-Teal │ ├── KvYaru-TealLight.svg │ └── KvYaru-TealDark.kvconfig ├── KvYaru-Amber │ ├── KvYaru-AmberLight.svg │ └── KvYaru-AmberDark.kvconfig ├── KvYaru-Brown │ ├── KvYaru-BrownLight.svg │ └── KvYaru-BrownDark.kvconfig ├── KvYaru-Green │ ├── KvYaru-GreenLight.svg │ └── KvYaru-GreenDark.kvconfig ├── KvYaru-Orange │ ├── KvYaru-OrangeLight.svg │ └── KvYaru-OrangeDark.kvconfig ├── KvYaru-Purple │ └── KvYaru-PurpleLight.svg ├── KvYaru-Remix │ ├── KvYaru-RemixLight.svg │ └── KvYaru-RemixDark.kvconfig ├── KvYaru-Yellow │ └── KvYaru-YellowLight.svg ├── KvYaru-Adwaita │ ├── KvYaru-AdwaitaLight.svg │ └── KvYaru-AdwaitaDark.kvconfig ├── KvYaru-Cinnamon │ ├── KvYaru-CinnamonLight.svg │ └── KvYaru-CinnamonDark.kvconfig └── KvYaru-Deepblue │ ├── KvYaru-DeepblueLight.svg │ └── KvYaru-DeepblueDark.kvconfig ├── .gitattributes ├── images ├── KvYaru Colors Preview 1.png ├── KvYaru Colors Preview 2.png └── KvYaru Colors Preview 3.png ├── CREDITS ├── README.md ├── install.sh └── uninstall.sh /src/KvYaru-AmberLight: -------------------------------------------------------------------------------- 1 | KvYaru-Amber -------------------------------------------------------------------------------- /src/KvYaru-AquaLight: -------------------------------------------------------------------------------- 1 | KvYaru-Aqua -------------------------------------------------------------------------------- /src/KvYaru-BaseLight: -------------------------------------------------------------------------------- 1 | KvYaru-Base -------------------------------------------------------------------------------- /src/KvYaru-BlueLight: -------------------------------------------------------------------------------- 1 | KvYaru-Blue -------------------------------------------------------------------------------- /src/KvYaru-BrownLight: -------------------------------------------------------------------------------- 1 | KvYaru-Brown -------------------------------------------------------------------------------- /src/KvYaru-GreenLight: -------------------------------------------------------------------------------- 1 | KvYaru-Green -------------------------------------------------------------------------------- /src/KvYaru-GreyLight: -------------------------------------------------------------------------------- 1 | KvYaru-Grey -------------------------------------------------------------------------------- /src/KvYaru-MATELight: -------------------------------------------------------------------------------- 1 | KvYaru-MATE -------------------------------------------------------------------------------- /src/KvYaru-PinkLight: -------------------------------------------------------------------------------- 1 | KvYaru-Pink -------------------------------------------------------------------------------- /src/KvYaru-RedLight: -------------------------------------------------------------------------------- 1 | KvYaru-Red -------------------------------------------------------------------------------- /src/KvYaru-RemixLight: -------------------------------------------------------------------------------- 1 | KvYaru-Remix -------------------------------------------------------------------------------- /src/KvYaru-TealLight: -------------------------------------------------------------------------------- 1 | KvYaru-Teal -------------------------------------------------------------------------------- /src/KvYaru-AdwaitaLight: -------------------------------------------------------------------------------- 1 | KvYaru-Adwaita -------------------------------------------------------------------------------- /src/KvYaru-OrangeLight: -------------------------------------------------------------------------------- 1 | KvYaru-Orange -------------------------------------------------------------------------------- /src/KvYaru-PurpleLight: -------------------------------------------------------------------------------- 1 | KvYaru-Purple -------------------------------------------------------------------------------- /src/KvYaru-YellowLight: -------------------------------------------------------------------------------- 1 | KvYaru-Yellow -------------------------------------------------------------------------------- /src/KvYaru-CinnamonLight: -------------------------------------------------------------------------------- 1 | KvYaru-Cinnamon -------------------------------------------------------------------------------- /src/KvYaru-DeepblueLight: -------------------------------------------------------------------------------- 1 | KvYaru-Deepblue -------------------------------------------------------------------------------- /src/KvYaru-Red/KvYaru-RedLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Red.svg -------------------------------------------------------------------------------- /src/KvYaru-Aqua/KvYaru-AquaLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Aqua.svg -------------------------------------------------------------------------------- /src/KvYaru-Base/KvYaru-BaseLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Base.svg -------------------------------------------------------------------------------- /src/KvYaru-Blue/KvYaru-BlueLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Blue.svg -------------------------------------------------------------------------------- /src/KvYaru-Grey/KvYaru-GreyLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Grey.svg -------------------------------------------------------------------------------- /src/KvYaru-MATE/KvYaru-MATELight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-MATE.svg -------------------------------------------------------------------------------- /src/KvYaru-Pink/KvYaru-PinkLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Pink.svg -------------------------------------------------------------------------------- /src/KvYaru-Teal/KvYaru-TealLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Teal.svg -------------------------------------------------------------------------------- /src/KvYaru-Amber/KvYaru-AmberLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Amber.svg -------------------------------------------------------------------------------- /src/KvYaru-Brown/KvYaru-BrownLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Brown.svg -------------------------------------------------------------------------------- /src/KvYaru-Green/KvYaru-GreenLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Green.svg -------------------------------------------------------------------------------- /src/KvYaru-Orange/KvYaru-OrangeLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Orange.svg -------------------------------------------------------------------------------- /src/KvYaru-Purple/KvYaru-PurpleLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Purple.svg -------------------------------------------------------------------------------- /src/KvYaru-Remix/KvYaru-RemixLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Remix.svg -------------------------------------------------------------------------------- /src/KvYaru-Yellow/KvYaru-YellowLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Yellow.svg -------------------------------------------------------------------------------- /src/KvYaru-Adwaita/KvYaru-AdwaitaLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Adwaita.svg -------------------------------------------------------------------------------- /src/KvYaru-Cinnamon/KvYaru-CinnamonLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Cinnamon.svg -------------------------------------------------------------------------------- /src/KvYaru-Deepblue/KvYaru-DeepblueLight.svg: -------------------------------------------------------------------------------- 1 | KvYaru-Deepblue.svg -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /images/KvYaru Colors Preview 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabePoel/KvYaru-Colors/HEAD/images/KvYaru Colors Preview 1.png -------------------------------------------------------------------------------- /images/KvYaru Colors Preview 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabePoel/KvYaru-Colors/HEAD/images/KvYaru Colors Preview 2.png -------------------------------------------------------------------------------- /images/KvYaru Colors Preview 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabePoel/KvYaru-Colors/HEAD/images/KvYaru Colors Preview 3.png -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | Light themes are forked from [KvYaru](https://github.com/tsujan/Kvantum/tree/master/Kvantum/themes/kvthemes/KvYaru). Dark themes are forked from [KvGnomeDark](https://github.com/tsujan/Kvantum/tree/master/Kvantum/themes/kvthemes/KvGnomeDark). 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # KvYaru-Colors 2 | Kvantum themes to match the [Yaru Colors](https://github.com/Jannomag/Yaru-Colors) and [Yaru Remix](https://github.com/Muqtxdir/yaru-remix) themes! Check releases for latest stable version. To install just run `sh install.sh` in the downloaded folder or manually move the themes you want from `KvYaru-Colors/src` to `~/.config/Kvantum`. 3 | 4 | ## Previews 5 | 6 | ![Okular Preview](./images/KvYaru%20Colors%20Preview%201.png) 7 | 8 | ![Kvantum Preview 1](./images/KvYaru%20Colors%20Preview%202.png) 9 | 10 | ![Kvantum Preview 2](./images/KvYaru%20Colors%20Preview%203.png) 11 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ "$EUID" -ne 0 ]; then 4 | echo -e "Installing KvYaru Colors as a \033[1muser\033[0m. Is this what you want? (y/n)" 5 | read -p "" -n 1 -r 6 | echo "" # New line 7 | if [[ $REPLY =~ ^[Yy]$ ]] 8 | then # Install theme as user 9 | cp -R ./src/* ~/.config/Kvantum/ 10 | MESSAGE="Installation complete." 11 | else # Don't install theme as user 12 | MESSAGE="Installation aborted." 13 | fi 14 | else 15 | echo -e "Installing KvYaru Colors as \033[1mroot\033[0m. Is this what you want? (y/n)" 16 | read -p "" -n 1 -r 17 | echo "" # New line 18 | if [[ $REPLY =~ ^[Yy]$ ]] 19 | then # Install theme as user 20 | cp -R ./src/* /usr/share/Kvantum/ 21 | MESSAGE="Installation complete." 22 | else # Don't install theme as user 23 | MESSAGE="Installation aborted." 24 | fi 25 | fi 26 | 27 | echo -e $MESSAGE -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ "$EUID" -ne 0 ]; then 4 | echo -e "Uninstalling KvYaru Colors as a \033[1muser\033[0m. Is this what you want? (y/n)" 5 | read -p "" -n 1 -r 6 | echo "" # New line 7 | if [[ $REPLY =~ ^[Yy]$ ]] 8 | then # Uninstall theme as user 9 | rm -R ~/.config/Kvantum/KvYaru-* 10 | MESSAGE="Uninstallation complete." 11 | else # Don't uninstall theme as user 12 | MESSAGE="Uninstallation aborted." 13 | fi 14 | else 15 | echo -e "Uninstalling KvYaru Colors as \033[1mroot\033[0m. Is this what you want? (y/n)" 16 | read -p "" -n 1 -r 17 | echo "" # New line 18 | if [[ $REPLY =~ ^[Yy]$ ]] 19 | then # Uninstall theme as user 20 | rm -R /usr/share/Kvantum/KvYaru-* 21 | MESSAGE="Uninstallation complete." 22 | else # Don't uninstall theme as user 23 | MESSAGE="Uninstallation aborted." 24 | fi 25 | fi 26 | 27 | echo -e $MESSAGE -------------------------------------------------------------------------------- /src/KvYaru-Red/KvYaru-RedDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#e92020 86 | inactive.highlight.color=#e92020 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#e92020 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Amber/KvYaru-AmberDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#eea834 86 | inactive.highlight.color=#eea834 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#eea834 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Aqua/KvYaru-AquaDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#41c6c8 86 | inactive.highlight.color=#41c6c8 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#41c6c8 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Base/KvYaru-BaseDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#e95420 86 | inactive.highlight.color=#e95420 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#e95420 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Blue/KvYaru-BlueDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#208fe9 86 | inactive.highlight.color=#208fe9 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#208fe9 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Brown/KvYaru-BrownDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#995640 86 | inactive.highlight.color=#995640 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#995640 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Green/KvYaru-GreenDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#3eb34f 86 | inactive.highlight.color=#3eb34f 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#3eb34f 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Grey/KvYaru-GreyDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#9c9c9c 86 | inactive.highlight.color=#9c9c9c 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#9c9c9c 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-MATE/KvYaru-MATEDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#78ab50 86 | inactive.highlight.color=#78ab50 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#78ab50 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Pink/KvYaru-PinkDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#e920a3 86 | inactive.highlight.color=#e920a3 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#e920a3 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Remix/KvYaru-RemixDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#315bef 86 | inactive.highlight.color=#315bef 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#315bef 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Teal/KvYaru-TealDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#16a085 86 | inactive.highlight.color=#16a085 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#16a085 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Adwaita/KvYaru-AdwaitaDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#3584e4 86 | inactive.highlight.color=#3584e4 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#3584e4 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Cinnamon/KvYaru-CinnamonDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#dd682a 86 | inactive.highlight.color=#dd682a 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#dd682a 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Deepblue/KvYaru-DeepblueDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#25469d 86 | inactive.highlight.color=#25469d 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#25469d 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | -------------------------------------------------------------------------------- /src/KvYaru-Orange/KvYaru-OrangeDark.kvconfig: -------------------------------------------------------------------------------- 1 | [%General] 2 | author=Gabriel Perko-Engel 3 | comment=A dark Kvantum theme matching Jan Schröder's Yaru Colors. Forked from initial design by Tsu Jan. 4 | alt_mnemonic=true 5 | left_tabs=false 6 | attach_active_tab=false 7 | no_active_tab_separator=false 8 | mirror_doc_tabs=true 9 | bold_active_tab=false 10 | joined_inactive_tabs=true 11 | group_toolbar_buttons=false 12 | toolbar_interior_spacing=3 13 | toolbar_item_spacing=1 14 | toolbar_separator_thickness=6 15 | spread_progressbar=true 16 | spread_header=true 17 | spread_menuitems=true 18 | composite=true 19 | menu_shadow_depth=4 20 | menu_separator_height=1 21 | tooltip_shadow_depth=6 22 | scroll_width=12 23 | scroll_arrows=false 24 | scroll_min_extent=50 25 | slider_width=4 26 | slider_handle_width=22 27 | slider_handle_length=18 28 | tickless_slider_handle_size=20 29 | center_toolbar_handle=true 30 | check_size=17 31 | textless_progressbar=false 32 | progressbar_thickness=4 33 | menubar_mouse_tracking=true 34 | toolbutton_style=1 35 | click_behavior=0 36 | translucent_windows=false 37 | blurring=false 38 | popup_blurring=false 39 | vertical_spin_indicators=false 40 | inline_spin_indicators=true 41 | inline_spin_separator=true 42 | spin_button_width=26 43 | fill_rubberband=false 44 | merge_menubar_with_toolbar=false 45 | small_icon_size=16 46 | large_icon_size=32 47 | button_icon_size=16 48 | toolbar_icon_size=24 49 | combo_as_lineedit=true 50 | square_combo_button=true 51 | layout_spacing=5 52 | tooltip_delay=-1 53 | submenu_overlap=4 54 | animate_states=true 55 | button_contents_shift=false 56 | combo_menu=true 57 | hide_combo_checkboxes=true 58 | combo_focus_rect=true 59 | groupbox_top_label=true 60 | layout_margin=7 61 | respect_DE=true 62 | scrollbar_in_view=true 63 | transient_scrollbar=true 64 | transient_groove=true 65 | tree_branch_line=true 66 | no_window_pattern=false 67 | reduce_window_opacity=0 68 | submenu_delay=250 69 | no_inactiveness=false 70 | reduce_menu_opacity=0 71 | dark_titlebar=true 72 | 73 | [GeneralColors] 74 | window.color=#353535 75 | inactive.window.color=#353535 76 | base.color=#2d2d2d 77 | inactive.base.color=#303030 78 | alt.base.color=#323232 79 | inactive.alt.base.color=#353535 80 | button.color=#333333 81 | light.color=#5a5a5a 82 | mid.light.color=#555555 83 | dark.color=#171717 84 | mid.color=#3c3c3c 85 | highlight.color=#e95420 86 | inactive.highlight.color=#e95420 87 | text.color=white 88 | inactive.text.color=#ffffffc8 89 | window.text.color=white 90 | inactive.window.text.color=#ffffff78 91 | button.text.color=white 92 | disabled.text.color=#A0A0A0 93 | tooltip.text.color=white 94 | highlight.text.color=white 95 | link.color=#1397c3 96 | link.visited.color=#e95420 97 | progress.indicator.text.color=white 98 | 99 | [Hacks] 100 | transparent_ktitle_label=true 101 | transparent_dolphin_view=false 102 | transparent_pcmanfm_sidepane=true 103 | blur_translucent=true 104 | transparent_menutitle=false 105 | respect_darkness=false 106 | kcapacitybar_as_progressbar=true 107 | force_size_grip=false 108 | iconless_pushbutton=false 109 | iconless_menu=false 110 | disabled_icon_opacity=100 111 | normal_default_pushbutton=true 112 | single_top_toolbar=true 113 | tint_on_mouseover=0 114 | lxqtmainmenu_iconsize=22 115 | transparent_pcmanfm_view=false 116 | no_selection_tint=true 117 | middle_click_scroll=false 118 | transparent_arrow_button=true 119 | kinetic_scrolling=true 120 | 121 | [PanelButtonCommand] 122 | frame=true 123 | frame.element=btn 124 | frame.expandedElement=button 125 | frame.top=3 126 | frame.bottom=3 127 | frame.left=3 128 | frame.right=3 129 | interior=true 130 | interior.element=button 131 | indicator.size=9 132 | text.normal.color=white 133 | text.normal.inactive.color=white 134 | text.focus.color=white 135 | text.press.color=white 136 | text.toggle.color=white 137 | text.toggle.inactive.color=white 138 | text.shadow=false 139 | text.shadow.color=black 140 | text.shadow.alpha=210 141 | text.shadow.xshift=0 142 | text.shadow.yshift=0 143 | text.shadow.depth=0 144 | text.margin=1 145 | text.iconspacing=3 146 | indicator.element=arrow 147 | text.margin.top=3 148 | text.margin.bottom=4 149 | text.margin.left=3 150 | text.margin.right=3 151 | frame.expansion=12 152 | 153 | [AltPanelButtonCommand] 154 | frame=true 155 | frame.element=button 156 | frame.top=4 157 | frame.bottom=4 158 | frame.left=4 159 | frame.right=4 160 | interior=true 161 | interior.element=button 162 | indicator.size=8 163 | text.normal.color=white 164 | text.focus.color=white 165 | text.press.color=white 166 | text.toggle.color=white 167 | highlight.text.color=white 168 | text.shadow=0 169 | text.margin=4 170 | text.iconspacing=4 171 | indicator.element=arrow 172 | frame.expansion=0 173 | 174 | [PanelButtonTool] 175 | inherits=PanelButtonCommand 176 | frame.element=btn 177 | frame.expandedElement=button 178 | 179 | [ToolbarButton] 180 | inherits=PanelButtonCommand 181 | interior.element=tbutton 182 | frame.element=tbtn 183 | frame.expandedElement=tbutton 184 | 185 | [Dock] 186 | inherits=PanelButtonCommand 187 | interior.element=dock 188 | frame.element=dock 189 | frame.top=1 190 | frame.bottom=1 191 | frame.left=1 192 | frame.right=1 193 | text.normal.color=white 194 | 195 | [DockTitle] 196 | inherits=PanelButtonCommand 197 | frame.top=3 198 | frame.bottom=3 199 | frame.left=3 200 | frame.right=3 201 | frame=false 202 | interior=false 203 | text.normal.color=white 204 | text.focus.color=white 205 | text.bold=false 206 | text.shadow=false 207 | text.margin.top=2 208 | text.margin.bottom=2 209 | 210 | [IndicatorSpinBox] 211 | inherits=PanelButtonCommand 212 | frame.element=btn 213 | frame.expandedElement=button 214 | interior.element=button 215 | indicator.element=iarrow 216 | indicator.size=10 217 | text.normal.color=white 218 | frame.expansion=14 219 | 220 | [RadioButton] 221 | inherits=PanelButtonCommand 222 | frame=false 223 | interior.element=radio 224 | text.normal.color=white 225 | text.focus.color=white 226 | text.shadow=false 227 | text.margin.top=2 228 | text.margin.bottom=2 229 | 230 | [CheckBox] 231 | inherits=PanelButtonCommand 232 | frame=false 233 | interior.element=checkbox 234 | text.normal.color=white 235 | text.focus.color=white 236 | text.shadow=false 237 | text.margin.top=2 238 | text.margin.bottom=2 239 | 240 | [GenericFrame] 241 | inherits=PanelButtonCommand 242 | frame=true 243 | interior=false 244 | frame.element=common 245 | interior.element=common 246 | frame.top=1 247 | frame.bottom=1 248 | frame.left=1 249 | frame.right=1 250 | 251 | [LineEdit] 252 | inherits=PanelButtonCommand 253 | frame.element=le 254 | frame.expandedElement=lineedit 255 | interior.element=lineedit 256 | text.margin.left=9 257 | text.margin.right=9 258 | text.margin.bottom=4 259 | 260 | [DropDownButton] 261 | inherits=PanelButtonCommand 262 | indicator.element=arrow-down 263 | indicator.size=9 264 | 265 | [IndicatorArrow] 266 | indicator.element=arrow 267 | indicator.size=9 268 | 269 | [ToolboxTab] 270 | inherits=PanelButtonCommand 271 | text.normal.color=white 272 | text.normal.inactive.color=#ffffff8c 273 | text.press.color=white 274 | text.press.inactive.color=#ffffff8c 275 | text.focus.color=white 276 | text.shadow=false 277 | 278 | [Tab] 279 | inherits=PanelButtonCommand 280 | interior.element=button 281 | text.margin.left=8 282 | text.margin.right=8 283 | text.margin.top=3 284 | text.margin.bottom=4 285 | frame.element=button 286 | focusFrame=true 287 | indicator.element=tab 288 | indicator.size=12 289 | frame.top=3 290 | frame.bottom=3 291 | frame.left=3 292 | frame.right=3 293 | text.normal.color=white 294 | text.normal.inactive.color=#ffffff6e 295 | text.focus.color=white 296 | text.toggle.color=white 297 | text.bold=false 298 | min_width=4font 299 | 300 | [TabFrame] 301 | inherits=PanelButtonCommand 302 | frame.element=none 303 | interior=false 304 | frame.top=1 305 | frame.bottom=1 306 | frame.left=1 307 | frame.right=1 308 | 309 | [TreeExpander] 310 | inherits=PanelButtonCommand 311 | frame=false 312 | interior=false 313 | indicator.size=10 314 | indicator.element=tree 315 | 316 | [HeaderSection] 317 | inherits=PanelButtonCommand 318 | frame.element=header 319 | interior.element=header 320 | frame.top=1 321 | frame.bottom=1 322 | frame.left=1 323 | frame.right=1 324 | text.margin.top=3 325 | text.margin.bottom=3 326 | text.margin.left=3 327 | text.margin.right=3 328 | text.shadow=false 329 | text.normal.color=#ffffff7d 330 | text.normal.inactive.color=#ffffff6e 331 | text.focus.color=#ffffffb4 332 | text.toggle.color=white 333 | text.bold=false 334 | frame.expansion=0 335 | 336 | [SizeGrip] 337 | indicator.element=resize-grip 338 | 339 | [Toolbar] 340 | inherits=PanelButtonCommand 341 | indicator.element=toolbar 342 | indicator.size=5 343 | text.margin=0 344 | interior=true 345 | frame=true 346 | interior.element=menubar 347 | frame.element=menubar 348 | text.normal.color=white 349 | text.focus.color=white 350 | frame.left=0 351 | frame.right=0 352 | frame.top=0 353 | frame.bottom=1 354 | text.shadow=false 355 | 356 | [Slider] 357 | inherits=PanelButtonCommand 358 | frame.element=slider 359 | interior.element=slider 360 | frame.top=2 361 | frame.bottom=2 362 | frame.left=2 363 | frame.right=2 364 | 365 | [SliderCursor] 366 | inherits=PanelButtonCommand 367 | frame=false 368 | interior.element=slidercursor 369 | 370 | [Progressbar] 371 | inherits=PanelButtonCommand 372 | frame.top=2 373 | frame.bottom=2 374 | frame.left=2 375 | frame.right=2 376 | frame.element=progress 377 | interior.element=progress 378 | text.margin=0 379 | text.normal.color=#ffffff8c 380 | text.normal.inactive.color=#ffffff6e 381 | text.focus.color=#ffffff8c 382 | text.press.color=#ffffff8c 383 | text.toggle.color=#ffffff8c 384 | text.bold=false 385 | frame.expansion=8 386 | text.shadow=false 387 | 388 | [ProgressbarContents] 389 | inherits=PanelButtonCommand 390 | frame.top=2 391 | frame.bottom=2 392 | frame.left=2 393 | frame.right=2 394 | frame=true 395 | frame.element=progress-pattern 396 | interior.element=progress-pattern 397 | 398 | [ItemView] 399 | inherits=PanelButtonCommand 400 | text.margin=1 401 | frame.element=itemview 402 | interior.element=itemview 403 | frame.top=2 404 | frame.bottom=2 405 | frame.left=2 406 | frame.right=2 407 | text.margin.top=3 408 | text.margin.bottom=3 409 | text.margin.left=4 410 | text.margin.right=4 411 | text.normal.color=white 412 | text.normal.inactive.color=#ffffffc8 413 | text.focus.color=white 414 | text.press.color=white 415 | text.toggle.color=white 416 | text.toggle.inactive.color=#ffffffeb 417 | text.shadow=false 418 | min_height=0 419 | 420 | [Splitter] 421 | indicator.size=32 422 | 423 | [Scrollbar] 424 | inherits=PanelButtonCommand 425 | indicator.element=arrow 426 | indicator.size=10 427 | 428 | [ScrollbarSlider] 429 | inherits=PanelButtonCommand 430 | frame.element=scrollbarslider 431 | interior=false 432 | frame.left=6 433 | frame.right=6 434 | frame.top=6 435 | frame.bottom=6 436 | indicator.element=grip 437 | indicator.size=12 438 | frame.expansion=0 439 | 440 | [ScrollbarGroove] 441 | inherits=PanelButtonCommand 442 | interior=true 443 | frame=true 444 | 445 | [MenuItem] 446 | inherits=AltPanelButtonCommand 447 | frame=true 448 | frame.element=menuitem 449 | interior.element=menuitem 450 | indicator.element=menuitem 451 | text.normal.color=white 452 | text.focus.color=white 453 | text.shadow=false 454 | text.margin.top=0 455 | text.margin.bottom=0 456 | text.margin.left=0 457 | text.margin.right=0 458 | frame.top=0 459 | frame.bottom=0 460 | frame.left=20 461 | frame.right=20 462 | frame.expansion=0 463 | 464 | [MenuBar] 465 | inherits=PanelButtonCommand 466 | interior=true 467 | interior.element=menubar 468 | frame=true 469 | frame.element=menubar 470 | frame.left=2 471 | frame.right=2 472 | frame.top=0 473 | frame.bottom=1 474 | 475 | [MenuBarItem] 476 | inherits=PanelButtonCommand 477 | interior=true 478 | interior.element=menubaritem 479 | frame=true 480 | frame.element=menubaritem 481 | frame.top=2 482 | frame.bottom=2 483 | frame.left=2 484 | frame.right=2 485 | text.margin.left=4 486 | text.margin.right=4 487 | text.margin.top=0 488 | text.margin.bottom=0 489 | text.shadow=false 490 | min_width=0 491 | min_height=0 492 | 493 | [TitleBar] 494 | inherits=PanelButtonCommand 495 | frame=false 496 | interior.element=titlebar 497 | indicator.size=12 498 | indicator.element=mdi 499 | text.normal.color=#464646 500 | text.focus.color=white 501 | text.bold=false 502 | text.italic=false 503 | 504 | [ComboBox] 505 | text.margin.left=18 506 | text.margin.right=18 507 | inherits=PanelButtonCommand 508 | frame.element=btn 509 | frame.expandedElement=button 510 | 511 | [Menu] 512 | inherits=AltPanelButtonCommand 513 | frame.top=6 514 | frame.bottom=6 515 | frame.left=6 516 | frame.right=6 517 | frame.element=menu 518 | interior.element=menu 519 | text.normal.color=white 520 | 521 | [GroupBox] 522 | inherits=GenericFrame 523 | frame=true 524 | frame.element=group 525 | text.margin=0 526 | frame.top=4 527 | frame.bottom=4 528 | frame.left=4 529 | frame.right=4 530 | text.normal.color=white 531 | text.press.color=white 532 | text.focus.color=white 533 | 534 | [TabBarFrame] 535 | inherits=PanelButtonCommand 536 | frame.top=3 537 | frame.bottom=3 538 | frame.left=3 539 | frame.right=3 540 | frame=true 541 | interior=true 542 | frame.element=tabbarframe 543 | interior.element=tabbarframe 544 | 545 | [ToolTip] 546 | inherits=GenericFrame 547 | frame.top=3 548 | frame.bottom=3 549 | frame.left=3 550 | frame.right=3 551 | interior=true 552 | text.margin=0 553 | interior.element=tooltip 554 | frame.element=tooltip 555 | 556 | [StatusBar] 557 | inherits=GenericFrame 558 | frame=false 559 | interior=false 560 | 561 | [Focus] 562 | inherits=PanelButtonCommand 563 | interior=false 564 | frame=true 565 | frame.element=focus 566 | frame.top=1 567 | frame.bottom=1 568 | frame.left=1 569 | frame.right=1 570 | frame.patternsize=15 571 | --------------------------------------------------------------------------------