├── .gitignore ├── LICENSE ├── README.md └── gtk-2.0 ├── apps.rc ├── assets ├── arrow-down-insens.png ├── arrow-down-prelight.png ├── arrow-down-small-insens.png ├── arrow-down-small-prelight.png ├── arrow-down-small.png ├── arrow-down.png ├── arrow-left-insens.png ├── arrow-left-prelight.png ├── arrow-left.png ├── arrow-right-insens.png ├── arrow-right-prelight.png ├── arrow-right.png ├── arrow-up-insens.png ├── arrow-up-prelight.png ├── arrow-up-small-insens.png ├── arrow-up-small-prelight.png ├── arrow-up-small.png ├── arrow-up.png ├── button-active.png ├── button-hover.png ├── button-insensitive.png ├── button.png ├── checkbox-checked-insensitive.png ├── checkbox-checked.png ├── checkbox-unchecked-insensitive.png ├── checkbox-unchecked.png ├── combo-entry-button-active-rtl.png ├── combo-entry-button-active.png ├── combo-entry-button-insensitive-rtl.png ├── combo-entry-button-insensitive.png ├── combo-entry-button-rtl.png ├── combo-entry-button.png ├── combo-entry-focus-notebook-rtl.png ├── combo-entry-focus-notebook.png ├── combo-entry-focus-rtl.png ├── combo-entry-focus.png ├── combo-entry-insensitive-notebook-rtl.png ├── combo-entry-insensitive-notebook.png ├── combo-entry-insensitive-rtl.png ├── combo-entry-insensitive.png ├── combo-entry-notebook-rtl.png ├── combo-entry-notebook.png ├── combo-entry-rtl.png ├── combo-entry.png ├── down-background-disable-rtl.png ├── down-background-disable.png ├── down-background-rtl.png ├── down-background.png ├── entry-active-bg.png ├── entry-active-notebook.png ├── entry-active-toolbar.png ├── entry-background-disabled.png ├── entry-background.png ├── entry-bg.png ├── entry-border-active-bg.png ├── entry-border-bg.png ├── entry-disabled-bg.png ├── entry-disabled-notebook.png ├── entry-disabled-toolbar.png ├── entry-notebook.png ├── entry-toolbar.png ├── focus-line.png ├── frame-gap-end.png ├── frame-gap-start.png ├── frame.png ├── handle-h.png ├── handle-v.png ├── inline-toolbar.png ├── line-h.png ├── line-v.png ├── menu-arrow-prelight.png ├── menu-arrow.png ├── menu-checkbox-checked-insensitive.png ├── menu-checkbox-checked-selected.png ├── menu-checkbox-checked.png ├── menu-checkbox-unchecked-insensitive.png ├── menu-checkbox-unchecked-selected.png ├── menu-checkbox-unchecked.png ├── menu-radio-checked-insensitive.png ├── menu-radio-checked-selected.png ├── menu-radio-checked.png ├── menu-radio-unchecked-insensitive.png ├── menu-radio-unchecked-selected.png ├── menu-radio-unchecked.png ├── menubar.png ├── menubar_button.png ├── menuitem.png ├── minus.png ├── notebook-gap-horiz.png ├── notebook-gap-vert.png ├── notebook.png ├── null.png ├── plus.png ├── progressbar.png ├── progressbar_v.png ├── radio-checked-insensitive.png ├── radio-checked.png ├── radio-unchecked-insensitive.png ├── radio-unchecked.png ├── slider-horiz-active.png ├── slider-horiz-insens.png ├── slider-horiz-prelight.png ├── slider-horiz.png ├── slider-insensitive.png ├── slider-prelight.png ├── slider-vert-active.png ├── slider-vert-insens.png ├── slider-vert-prelight.png ├── slider-vert.png ├── slider.png ├── tab-bottom-active.png ├── tab-left-active.png ├── tab-right-active.png ├── tab-top-active.png ├── toolbar.png ├── tree_header.png ├── trough-horizontal-active.png ├── trough-horizontal.png ├── trough-progressbar.png ├── trough-progressbar_v.png ├── trough-scrollbar-horiz.png ├── trough-scrollbar-vert.png ├── trough-vertical-active.png ├── trough-vertical.png ├── up-background-disable-rtl.png ├── up-background-disable.png ├── up-background-rtl.png └── up-background.png ├── gtkrc ├── main.rc ├── menubar-toolbar ├── button-active.png ├── button-hover.png ├── button-insensitive.png ├── button.png ├── entry-active-toolbar-dark.png ├── entry-active-toolbar.png ├── entry-disabled-toolbar-dark.png ├── entry-disabled-toolbar.png ├── entry-toolbar-dark.png ├── entry-toolbar.png ├── menubar-dark.png ├── menubar-dark.png1 ├── menubar-toolbar-dark.rc ├── menubar-toolbar.rc ├── menubar_button-dark.png └── menubar_button.png ├── panel.rc └── xfce-notify.rc /.gitignore: -------------------------------------------------------------------------------- 1 | push.sh 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # monokai-gtk 2 | A GTK2 theme, forked from [arc-theme](https://github.com/horst3180/arc-theme), which gives a uniform look to applications using the Monokai color scheme. 3 | 4 | ## Installation 5 | Install the theme cloning this repo (`git clone https://github.com/avivace/monokai-gtk`) and moving it into `/usr/share/themes`. You can now enable it system-wide. 6 | 7 | You can enable GTK themes only for some applications: launch them in this way: `GTK2_RC_FILES=/usr/share/themes/monokai-gtk/gtk-2.0/gtkrc your-application` (GTK2) or `GTK_THEME=your-theme your-application` (GTK3). Change the `exec` parameter in your desktop launcher to save this preference in your DE. 8 | 9 | ![](http://i.imgur.com/P31z2bR.png) 10 | ![](http://i.imgur.com/pLO2G2T.png) 11 | 12 | In these screenshots I'm on debian unstable, KDE Plasma 5.8.4, using Arc Dark as desktop theme. The UI font is Helvetica Neue. The Sublime Text 3 theme is Boxy. 13 | [Here](https://www.reddit.com/r/unixporn/comments/5c0p8c/kde_ive_made_a_gtk2_theme_to_have_a_uniform/)'s the reddit thread on /r/unixporn with more details. 14 | -------------------------------------------------------------------------------- /gtk-2.0/apps.rc: -------------------------------------------------------------------------------- 1 | # 2 | # Thunar 3 | # 4 | style "thunar-handle" { GtkPaned::handle-size = 2 } 5 | 6 | style "dark-sidebar" { 7 | GtkTreeView::odd_row_color = @dark_sidebar_bg 8 | GtkTreeView::even_row_color = @dark_sidebar_bg 9 | 10 | 11 | base[NORMAL] = @dark_sidebar_bg 12 | base[INSENSITIVE] = @dark_sidebar_bg 13 | 14 | text[NORMAL] = "#BAC3CF" 15 | text[ACTIVE] = @selected_fg_color 16 | text[SELECTED] = @selected_fg_color 17 | } 18 | 19 | style "thunar-frame" { 20 | xthickness = 0 21 | ythickness = 0 22 | } 23 | 24 | widget_class "*ThunarWindow*." style "thunar-frame" 25 | widget_class "*ThunarShortcutsView*" style "dark-sidebar" 26 | widget_class "*ThunarTreeView*" style "dark-sidebar" 27 | widget_class "*ThunarWindow*." style "thunar-handle" 28 | 29 | # 30 | # Workaround for colored entries 31 | # 32 | style "entry_border" { 33 | 34 | xthickness = 7 35 | ythickness = 5 36 | 37 | engine "pixmap" { 38 | 39 | image { 40 | function = SHADOW 41 | state = NORMAL 42 | detail = "entry" 43 | file = "assets/entry-border-bg.png" 44 | border = {6, 6, 6, 6} 45 | stretch = TRUE 46 | } 47 | 48 | image { 49 | function = SHADOW 50 | state = ACTIVE 51 | detail = "entry" 52 | file = "assets/entry-border-active-bg.png" 53 | border = {6, 6, 6, 6} 54 | stretch = TRUE 55 | } 56 | 57 | image { 58 | function = FLAT_BOX 59 | state = ACTIVE 60 | detail = "entry_bg" 61 | file = "assets/null.png" 62 | } 63 | 64 | image { 65 | function = FLAT_BOX 66 | state = INSENSITIVE 67 | detail = "entry_bg" 68 | file = "assets/null.png" 69 | } 70 | 71 | image { 72 | function = FLAT_BOX 73 | detail = "entry_bg" 74 | file = "assets/null.png" 75 | } 76 | } 77 | } 78 | 79 | # Mousepad search entry 80 | widget_class "*MousepadSearchBar*." style "entry_border" 81 | 82 | # Mousepad find and replace 83 | widget_class "*MousepadReplaceDialog*." style "entry_border" 84 | 85 | # Hexchat input box 86 | class "SexySpellEntry" style:highest "entry_border" 87 | -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-down-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-down-insens.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-down-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-down-prelight.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-down-small-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-down-small-insens.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-down-small-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-down-small-prelight.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-down-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-down-small.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-down.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-left-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-left-insens.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-left-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-left-prelight.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-left.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-right-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-right-insens.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-right-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-right-prelight.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-right.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-up-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-up-insens.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-up-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-up-prelight.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-up-small-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-up-small-insens.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-up-small-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-up-small-prelight.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-up-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-up-small.png -------------------------------------------------------------------------------- /gtk-2.0/assets/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/arrow-up.png -------------------------------------------------------------------------------- /gtk-2.0/assets/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/button-active.png -------------------------------------------------------------------------------- /gtk-2.0/assets/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/button-hover.png -------------------------------------------------------------------------------- /gtk-2.0/assets/button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/button-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/button.png -------------------------------------------------------------------------------- /gtk-2.0/assets/checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/checkbox-checked.png -------------------------------------------------------------------------------- /gtk-2.0/assets/checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-button-active-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-button-active-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-button-active.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-button-insensitive-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-button-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-button-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-button-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-button.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-focus-notebook-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-focus-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-focus-notebook.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-focus-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-focus-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-focus.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-insensitive-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-insensitive-notebook.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-insensitive-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-insensitive-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-notebook-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-notebook-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-notebook.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/combo-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/combo-entry.png -------------------------------------------------------------------------------- /gtk-2.0/assets/down-background-disable-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/down-background-disable-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/down-background-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/down-background-disable.png -------------------------------------------------------------------------------- /gtk-2.0/assets/down-background-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/down-background-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/down-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/down-background.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-active-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-active-bg.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-active-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-active-notebook.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-active-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-active-toolbar.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-background-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-background-disabled.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-background.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-bg.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-border-active-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-border-active-bg.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-border-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-border-bg.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-disabled-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-disabled-bg.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-disabled-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-disabled-notebook.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-disabled-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-disabled-toolbar.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-notebook.png -------------------------------------------------------------------------------- /gtk-2.0/assets/entry-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/entry-toolbar.png -------------------------------------------------------------------------------- /gtk-2.0/assets/focus-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/focus-line.png -------------------------------------------------------------------------------- /gtk-2.0/assets/frame-gap-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/frame-gap-end.png -------------------------------------------------------------------------------- /gtk-2.0/assets/frame-gap-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/frame-gap-start.png -------------------------------------------------------------------------------- /gtk-2.0/assets/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/frame.png -------------------------------------------------------------------------------- /gtk-2.0/assets/handle-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/handle-h.png -------------------------------------------------------------------------------- /gtk-2.0/assets/handle-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/handle-v.png -------------------------------------------------------------------------------- /gtk-2.0/assets/inline-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/inline-toolbar.png -------------------------------------------------------------------------------- /gtk-2.0/assets/line-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/line-h.png -------------------------------------------------------------------------------- /gtk-2.0/assets/line-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/line-v.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-arrow-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-arrow-prelight.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-arrow.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-checkbox-checked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-checkbox-checked-selected.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-checkbox-checked.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-checkbox-unchecked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-checkbox-unchecked-selected.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-checkbox-unchecked.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-radio-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-radio-checked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-radio-checked-selected.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-radio-checked.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-radio-unchecked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-radio-unchecked-selected.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menu-radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menu-radio-unchecked.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menubar.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menubar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menubar_button.png -------------------------------------------------------------------------------- /gtk-2.0/assets/menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/menuitem.png -------------------------------------------------------------------------------- /gtk-2.0/assets/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/minus.png -------------------------------------------------------------------------------- /gtk-2.0/assets/notebook-gap-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/notebook-gap-horiz.png -------------------------------------------------------------------------------- /gtk-2.0/assets/notebook-gap-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/notebook-gap-vert.png -------------------------------------------------------------------------------- /gtk-2.0/assets/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/notebook.png -------------------------------------------------------------------------------- /gtk-2.0/assets/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/null.png -------------------------------------------------------------------------------- /gtk-2.0/assets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/plus.png -------------------------------------------------------------------------------- /gtk-2.0/assets/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/progressbar.png -------------------------------------------------------------------------------- /gtk-2.0/assets/progressbar_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/progressbar_v.png -------------------------------------------------------------------------------- /gtk-2.0/assets/radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/radio-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/radio-checked.png -------------------------------------------------------------------------------- /gtk-2.0/assets/radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/radio-unchecked.png -------------------------------------------------------------------------------- /gtk-2.0/assets/slider-horiz-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/slider-horiz-active.png -------------------------------------------------------------------------------- /gtk-2.0/assets/slider-horiz-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/slider-horiz-insens.png -------------------------------------------------------------------------------- /gtk-2.0/assets/slider-horiz-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/slider-horiz-prelight.png -------------------------------------------------------------------------------- /gtk-2.0/assets/slider-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/slider-horiz.png -------------------------------------------------------------------------------- /gtk-2.0/assets/slider-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/slider-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/slider-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/slider-prelight.png -------------------------------------------------------------------------------- /gtk-2.0/assets/slider-vert-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/slider-vert-active.png -------------------------------------------------------------------------------- /gtk-2.0/assets/slider-vert-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/slider-vert-insens.png -------------------------------------------------------------------------------- /gtk-2.0/assets/slider-vert-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/slider-vert-prelight.png -------------------------------------------------------------------------------- /gtk-2.0/assets/slider-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/slider-vert.png -------------------------------------------------------------------------------- /gtk-2.0/assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/slider.png -------------------------------------------------------------------------------- /gtk-2.0/assets/tab-bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/tab-bottom-active.png -------------------------------------------------------------------------------- /gtk-2.0/assets/tab-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/tab-left-active.png -------------------------------------------------------------------------------- /gtk-2.0/assets/tab-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/tab-right-active.png -------------------------------------------------------------------------------- /gtk-2.0/assets/tab-top-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/tab-top-active.png -------------------------------------------------------------------------------- /gtk-2.0/assets/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/toolbar.png -------------------------------------------------------------------------------- /gtk-2.0/assets/tree_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/tree_header.png -------------------------------------------------------------------------------- /gtk-2.0/assets/trough-horizontal-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/trough-horizontal-active.png -------------------------------------------------------------------------------- /gtk-2.0/assets/trough-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/trough-horizontal.png -------------------------------------------------------------------------------- /gtk-2.0/assets/trough-progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/trough-progressbar.png -------------------------------------------------------------------------------- /gtk-2.0/assets/trough-progressbar_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/trough-progressbar_v.png -------------------------------------------------------------------------------- /gtk-2.0/assets/trough-scrollbar-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/trough-scrollbar-horiz.png -------------------------------------------------------------------------------- /gtk-2.0/assets/trough-scrollbar-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/trough-scrollbar-vert.png -------------------------------------------------------------------------------- /gtk-2.0/assets/trough-vertical-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/trough-vertical-active.png -------------------------------------------------------------------------------- /gtk-2.0/assets/trough-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/trough-vertical.png -------------------------------------------------------------------------------- /gtk-2.0/assets/up-background-disable-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/up-background-disable-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/up-background-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/up-background-disable.png -------------------------------------------------------------------------------- /gtk-2.0/assets/up-background-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/up-background-rtl.png -------------------------------------------------------------------------------- /gtk-2.0/assets/up-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/assets/up-background.png -------------------------------------------------------------------------------- /gtk-2.0/gtkrc: -------------------------------------------------------------------------------- 1 | gtk-font-name = "Helvetica Neue 12" 2 | gtk-color-scheme = "base_color: #404552" 3 | gtk-color-scheme = "text_color: #ffffff" 4 | gtk-color-scheme = "bg_color: #383c4a" 5 | gtk-color-scheme = "fg_color: #ffffff" 6 | gtk-color-scheme = "tooltip_bg_color: #4B5162" 7 | gtk-color-scheme = "tooltip_fg_color: #ffffff" 8 | gtk-color-scheme = "selected_bg_color: #5294e2" 9 | gtk-color-scheme = "selected_fg_color: #ffffff" 10 | gtk-color-scheme = "insensitive_bg_color: #3e4350" 11 | gtk-color-scheme = "insensitive_fg_color: #7c818c" 12 | gtk-color-scheme = "notebook_bg: #404552" 13 | gtk-color-scheme = "dark_sidebar_bg: #353945" 14 | gtk-color-scheme = "link_color: #5294e2" 15 | gtk-color-scheme = "menu_bg: #2e2f29" 16 | 17 | gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. 18 | gtk-auto-mnemonics = 1 19 | gtk-primary-button-warps-slider = 1 20 | 21 | include "main.rc" 22 | include "apps.rc" 23 | include "panel.rc" 24 | include "xfce-notify.rc" 25 | include "menubar-toolbar/menubar-toolbar-dark.rc" -------------------------------------------------------------------------------- /gtk-2.0/main.rc: -------------------------------------------------------------------------------- 1 | style "default" { 2 | 3 | xthickness = 1 4 | ythickness = 1 5 | 6 | # Style Properties 7 | 8 | GtkWidget::focus-line-width = 1 9 | GtkMenuBar::window-dragging = 1 10 | GtkToolbar::window-dragging = 1 11 | GtkToolbar::internal-padding = 4 12 | GtkToolButton::icon-spacing = 4 13 | 14 | GtkWidget::tooltip-radius = 2 15 | GtkWidget::tooltip-alpha = 235 16 | GtkWidget::new-tooltip-style = 1 #for compatibility 17 | 18 | GtkSeparatorMenuItem::horizontal-padding = 3 19 | GtkSeparatorMenuItem::wide-separators = 1 20 | GtkSeparatorMenuItem::separator-height = 1 21 | 22 | GtkButton::child-displacement-y = 0 23 | GtkButton::default-border = { 0, 0, 0, 0 } 24 | GtkButton::default-outside_border = { 0, 0, 0, 0 } 25 | 26 | GtkEntry::state-hint = 1 27 | 28 | GtkScrollbar::trough-border = 0 29 | GtkRange::trough-border = 0 30 | GtkRange::slider-width = 13 31 | GtkRange::stepper-size = 0 32 | 33 | GtkScrollbar::activate-slider = 1 34 | GtkScrollbar::has-backward-stepper = 0 35 | GtkScrollbar::has-forward-stepper = 0 36 | GtkScrollbar::min-slider-length = 32 37 | GtkScrolledWindow::scrollbar-spacing = 0 38 | GtkScrolledWindow::scrollbars-within-bevel = 1 39 | 40 | GtkScale::slider_length = 15 41 | GtkScale::slider_width = 15 42 | GtkScale::trough-side-details = 1 43 | 44 | GtkProgressBar::min-horizontal-bar-height = 8 45 | GtkProgressBar::min-vertical-bar-width = 8 46 | 47 | GtkStatusbar::shadow_type = GTK_SHADOW_NONE 48 | GtkSpinButton::shadow_type = GTK_SHADOW_NONE 49 | GtkMenuBar::shadow-type = GTK_SHADOW_NONE 50 | GtkToolbar::shadow-type = GTK_SHADOW_NONE 51 | GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): 52 | GtkMenu::horizontal-padding = 0 53 | GtkMenu::vertical-padding = 0 54 | 55 | GtkCheckButton::indicator_spacing = 3 56 | GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } 57 | 58 | GtkTreeView::row_ending_details = 0 59 | GtkTreeView::expander-size = 11 60 | GtkTreeView::vertical-separator = 4 61 | GtkTreeView::horizontal-separator = 4 62 | GtkTreeView::allow-rules = 1 63 | GtkTreeView::odd_row_color = shade(0.98, @base_color) 64 | 65 | GtkExpander::expander-size = 11 66 | 67 | GnomeHRef::link_color = @link_color 68 | GtkHTML::link-color = @link_color 69 | GtkIMHtmlr::hyperlink-color = @link_color 70 | GtkIMHtml::hyperlink-color = @link_color 71 | GtkWidget::link-color = @link_color 72 | GtkWidget::visited-link-color = @text_color 73 | 74 | # Colors 75 | 76 | bg[NORMAL] = @bg_color 77 | bg[PRELIGHT] = shade (1.02, @bg_color) 78 | bg[SELECTED] = @selected_bg_color 79 | bg[INSENSITIVE] = @insensitive_bg_color 80 | bg[ACTIVE] = shade (0.9, @bg_color) 81 | 82 | fg[NORMAL] = @text_color 83 | fg[PRELIGHT] = @fg_color 84 | fg[SELECTED] = @selected_fg_color 85 | fg[INSENSITIVE] = @insensitive_fg_color 86 | fg[ACTIVE] = @fg_color 87 | 88 | text[NORMAL] = @text_color 89 | text[PRELIGHT] = @text_color 90 | text[SELECTED] = @selected_fg_color 91 | text[INSENSITIVE] = @insensitive_fg_color 92 | text[ACTIVE] = @selected_fg_color 93 | 94 | base[NORMAL] = @base_color 95 | base[PRELIGHT] = shade (0.95, @bg_color) 96 | base[SELECTED] = @selected_bg_color 97 | base[INSENSITIVE] = @bg_color 98 | base[ACTIVE] = shade (0.9, @selected_bg_color) 99 | 100 | # For succinctness, all reasonable pixmap options remain here 101 | 102 | engine "pixmap" { 103 | 104 | # Check Buttons 105 | 106 | image { 107 | function = CHECK 108 | recolorable = TRUE 109 | state = NORMAL 110 | shadow = OUT 111 | overlay_file = "assets/checkbox-unchecked.png" 112 | overlay_stretch = FALSE 113 | } 114 | 115 | image { 116 | function = CHECK 117 | recolorable = TRUE 118 | state = PRELIGHT 119 | shadow = OUT 120 | overlay_file = "assets/checkbox-unchecked.png" 121 | overlay_stretch = FALSE 122 | } 123 | 124 | image { 125 | function = CHECK 126 | recolorable = TRUE 127 | state = ACTIVE 128 | shadow = OUT 129 | overlay_file = "assets/checkbox-unchecked.png" 130 | overlay_stretch = FALSE 131 | } 132 | 133 | image { 134 | function = CHECK 135 | recolorable = TRUE 136 | state = SELECTED 137 | shadow = OUT 138 | overlay_file = "assets/checkbox-unchecked.png" 139 | overlay_stretch = FALSE 140 | } 141 | 142 | image { 143 | function = CHECK 144 | recolorable = TRUE 145 | state = INSENSITIVE 146 | shadow = OUT 147 | overlay_file = "assets/checkbox-unchecked-insensitive.png" 148 | overlay_stretch = FALSE 149 | } 150 | 151 | image { 152 | function = CHECK 153 | recolorable = TRUE 154 | state = NORMAL 155 | shadow = IN 156 | overlay_file = "assets/checkbox-checked.png" 157 | overlay_stretch = FALSE 158 | } 159 | 160 | image { 161 | function = CHECK 162 | recolorable = TRUE 163 | state = PRELIGHT 164 | shadow = IN 165 | overlay_file = "assets/checkbox-checked.png" 166 | overlay_stretch = FALSE 167 | } 168 | 169 | image { 170 | function = CHECK 171 | recolorable = TRUE 172 | state = ACTIVE 173 | shadow = IN 174 | overlay_file = "assets/checkbox-checked.png" 175 | overlay_stretch = FALSE 176 | } 177 | 178 | image { 179 | function = CHECK 180 | recolorable = TRUE 181 | state = SELECTED 182 | shadow = IN 183 | overlay_file = "assets/checkbox-checked.png" 184 | overlay_stretch = FALSE 185 | } 186 | 187 | image { 188 | function = CHECK 189 | recolorable = TRUE 190 | state = INSENSITIVE 191 | shadow = IN 192 | overlay_file = "assets/checkbox-checked-insensitive.png" 193 | overlay_stretch = FALSE 194 | } 195 | 196 | # Radio Buttons 197 | 198 | image { 199 | function = OPTION 200 | state = NORMAL 201 | shadow = OUT 202 | overlay_file = "assets/radio-unchecked.png" 203 | overlay_stretch = FALSE 204 | } 205 | 206 | image { 207 | function = OPTION 208 | state = PRELIGHT 209 | shadow = OUT 210 | overlay_file = "assets/radio-unchecked.png" 211 | overlay_stretch = FALSE 212 | } 213 | 214 | image { 215 | function = OPTION 216 | state = ACTIVE 217 | shadow = OUT 218 | overlay_file = "assets/radio-unchecked.png" 219 | overlay_stretch = FALSE 220 | } 221 | 222 | image { 223 | function = OPTION 224 | state = SELECTED 225 | shadow = OUT 226 | overlay_file = "assets/radio-unchecked.png" 227 | overlay_stretch = FALSE 228 | } 229 | 230 | image { 231 | function = OPTION 232 | state = INSENSITIVE 233 | shadow = OUT 234 | overlay_file = "assets/radio-unchecked-insensitive.png" 235 | overlay_stretch = FALSE 236 | } 237 | 238 | image { 239 | function = OPTION 240 | state = NORMAL 241 | shadow = IN 242 | overlay_file = "assets/radio-checked.png" 243 | overlay_stretch = FALSE 244 | } 245 | 246 | image { 247 | function = OPTION 248 | state = PRELIGHT 249 | shadow = IN 250 | overlay_file = "assets/radio-checked.png" 251 | overlay_stretch = FALSE 252 | } 253 | 254 | image { 255 | function = OPTION 256 | state = ACTIVE 257 | shadow = IN 258 | overlay_file = "assets/radio-checked.png" 259 | overlay_stretch = FALSE 260 | } 261 | 262 | image { 263 | function = OPTION 264 | state = SELECTED 265 | shadow = IN 266 | overlay_file = "assets/radio-checked.png" 267 | overlay_stretch = FALSE 268 | } 269 | 270 | image { 271 | function = OPTION 272 | state = INSENSITIVE 273 | shadow = IN 274 | overlay_file = "assets/radio-checked-insensitive.png" 275 | overlay_stretch = FALSE 276 | } 277 | 278 | # Arrows 279 | 280 | image { 281 | function = ARROW 282 | overlay_file = "assets/arrow-up.png" 283 | overlay_border = { 0, 0, 0, 0 } 284 | overlay_stretch = FALSE 285 | arrow_direction = UP 286 | } 287 | 288 | image { 289 | function = ARROW 290 | state = PRELIGHT 291 | overlay_file = "assets/arrow-up-prelight.png" 292 | overlay_border = { 0, 0, 0, 0 } 293 | overlay_stretch = FALSE 294 | arrow_direction = UP 295 | } 296 | 297 | image { 298 | function = ARROW 299 | state = ACTIVE 300 | overlay_file = "assets/arrow-up-prelight.png" 301 | overlay_border = { 0, 0, 0, 0 } 302 | overlay_stretch = FALSE 303 | arrow_direction = UP 304 | } 305 | 306 | image { 307 | function = ARROW 308 | state = INSENSITIVE 309 | overlay_file = "assets/arrow-up-insens.png" 310 | overlay_border = { 0, 0, 0, 0 } 311 | overlay_stretch = FALSE 312 | arrow_direction = UP 313 | } 314 | 315 | image { 316 | function = ARROW 317 | state = NORMAL 318 | overlay_file = "assets/arrow-down.png" 319 | overlay_border = { 0, 0, 0, 0 } 320 | overlay_stretch = FALSE 321 | arrow_direction = DOWN 322 | } 323 | 324 | image { 325 | function = ARROW 326 | state = PRELIGHT 327 | overlay_file = "assets/arrow-down-prelight.png" 328 | overlay_border = { 0, 0, 0, 0 } 329 | overlay_stretch = FALSE 330 | arrow_direction = DOWN 331 | } 332 | 333 | image { 334 | function = ARROW 335 | state = ACTIVE 336 | overlay_file = "assets/arrow-down-prelight.png" 337 | overlay_border = { 0, 0, 0, 0 } 338 | overlay_stretch = FALSE 339 | arrow_direction = DOWN 340 | } 341 | 342 | image { 343 | function = ARROW 344 | state = INSENSITIVE 345 | overlay_file = "assets/arrow-down-insens.png" 346 | overlay_border = { 0, 0, 0, 0 } 347 | overlay_stretch = FALSE 348 | arrow_direction = DOWN 349 | } 350 | 351 | image { 352 | function = ARROW 353 | overlay_file = "assets/arrow-left.png" 354 | overlay_border = { 0, 0, 0, 0 } 355 | overlay_stretch = FALSE 356 | arrow_direction = LEFT 357 | } 358 | 359 | image { 360 | function = ARROW 361 | state= PRELIGHT 362 | overlay_file = "assets/arrow-left-prelight.png" 363 | overlay_border = { 0, 0, 0, 0 } 364 | overlay_stretch = FALSE 365 | arrow_direction = LEFT 366 | } 367 | 368 | image { 369 | function = ARROW 370 | state = ACTIVE 371 | overlay_file = "assets/arrow-left-prelight.png" 372 | overlay_border = { 0, 0, 0, 0 } 373 | overlay_stretch = FALSE 374 | arrow_direction = LEFT 375 | } 376 | 377 | image { 378 | function = ARROW 379 | state = INSENSITIVE 380 | overlay_file = "assets/arrow-left-insens.png" 381 | overlay_border = { 0, 0, 0, 0 } 382 | overlay_stretch = FALSE 383 | arrow_direction = LEFT 384 | } 385 | 386 | image { 387 | function = ARROW 388 | overlay_file = "assets/arrow-right.png" 389 | overlay_border = { 0, 0, 0, 0 } 390 | overlay_stretch = FALSE 391 | arrow_direction = RIGHT 392 | } 393 | 394 | image { 395 | function = ARROW 396 | state = PRELIGHT 397 | overlay_file = "assets/arrow-right-prelight.png" 398 | overlay_border = { 0, 0, 0, 0 } 399 | overlay_stretch = FALSE 400 | arrow_direction = RIGHT 401 | } 402 | 403 | image { 404 | function = ARROW 405 | state = ACTIVE 406 | overlay_file = "assets/arrow-right-prelight.png" 407 | overlay_border = { 0, 0, 0, 0 } 408 | overlay_stretch = FALSE 409 | arrow_direction = RIGHT 410 | } 411 | 412 | image { 413 | function = ARROW 414 | state = INSENSITIVE 415 | overlay_file = "assets/arrow-right-insens.png" 416 | overlay_border = { 0, 0, 0, 0 } 417 | overlay_stretch = FALSE 418 | arrow_direction = RIGHT 419 | } 420 | 421 | # Option Menu Arrows 422 | 423 | image { 424 | function = TAB 425 | state = INSENSITIVE 426 | overlay_file = "assets/arrow-down-insens.png" 427 | overlay_stretch = FALSE 428 | } 429 | 430 | image { 431 | function = TAB 432 | state = NORMAL 433 | overlay_file = "assets/arrow-down.png" 434 | overlay_border = { 0, 0, 0, 0 } 435 | overlay_stretch = FALSE 436 | } 437 | 438 | image { 439 | function = TAB 440 | state = PRELIGHT 441 | overlay_file = "assets/arrow-down-prelight.png" 442 | overlay_border = { 0, 0, 0, 0 } 443 | overlay_stretch = FALSE 444 | } 445 | 446 | # Lines 447 | 448 | image { 449 | function = VLINE 450 | file = "assets/line-v.png" 451 | border = { 0, 0, 0, 0 } 452 | stretch = TRUE 453 | } 454 | 455 | image { 456 | function = HLINE 457 | file = "assets/line-h.png" 458 | border = { 0, 0, 0, 0 } 459 | stretch = TRUE 460 | } 461 | 462 | # Focuslines 463 | 464 | image { 465 | function = FOCUS 466 | file = "assets/focus-line.png" 467 | border = { 1, 1, 1, 1 } 468 | stretch = TRUE 469 | } 470 | 471 | # Handles 472 | 473 | image { 474 | function = HANDLE 475 | overlay_file = "assets/handle-h.png" 476 | overlay_stretch = FALSE 477 | orientation = HORIZONTAL 478 | } 479 | 480 | image { 481 | function = HANDLE 482 | overlay_file = "assets/handle-v.png" 483 | overlay_stretch = FALSE 484 | orientation = VERTICAL 485 | } 486 | 487 | # Expanders 488 | 489 | image { 490 | function = EXPANDER 491 | expander_style = COLLAPSED 492 | file = "assets/plus.png" 493 | } 494 | 495 | image { 496 | function = EXPANDER 497 | expander_style = EXPANDED 498 | file = "assets/minus.png" 499 | } 500 | 501 | image { 502 | function = EXPANDER 503 | expander_style = SEMI_EXPANDED 504 | file = "assets/minus.png" 505 | } 506 | 507 | image { 508 | function = EXPANDER 509 | expander_style = SEMI_COLLAPSED 510 | file = "assets/plus.png" 511 | } 512 | 513 | image { 514 | function = RESIZE_GRIP 515 | state = NORMAL 516 | detail = "statusbar" 517 | overlay_file = "assets/null.png" 518 | overlay_border = { 0,0,0,0 } 519 | overlay_stretch = FALSE 520 | } 521 | 522 | # Shadows ( this area needs help :P ) 523 | 524 | image { 525 | function = SHADOW_GAP 526 | file = "assets/null.png" 527 | border = { 4, 4, 4, 4 } 528 | stretch = TRUE 529 | } 530 | } 531 | } 532 | 533 | 534 | style "toplevel_hack" { 535 | 536 | engine "adwaita" { 537 | } 538 | } 539 | 540 | style "ooo_stepper_hack" { 541 | 542 | GtkScrollbar::stepper-size = 0 543 | GtkScrollbar::has-backward-stepper = 0 544 | GtkScrollbar::has-forward-stepper = 0 545 | 546 | } 547 | 548 | style "scrollbar" { 549 | 550 | engine "pixmap" { 551 | 552 | image { 553 | function = BOX 554 | detail = "trough" 555 | file = "assets/trough-scrollbar-horiz.png" 556 | border = { 2, 2, 3, 3 } 557 | stretch = TRUE 558 | orientation = HORIZONTAL 559 | } 560 | 561 | image { 562 | function = BOX 563 | detail = "trough" 564 | file = "assets/trough-scrollbar-vert.png" 565 | border = { 3, 3, 2, 2 } 566 | stretch = TRUE 567 | orientation = VERTICAL 568 | } 569 | 570 | image { 571 | function = ARROW 572 | overlay_file = "assets/null.png" 573 | overlay_border = { 0, 0, 0, 0 } 574 | overlay_stretch = FALSE 575 | arrow_direction = UP 576 | } 577 | 578 | image { 579 | function = ARROW 580 | overlay_file = "assets/null.png" 581 | overlay_border = { 0, 0, 0, 0 } 582 | overlay_stretch = FALSE 583 | arrow_direction = DOWN 584 | } 585 | 586 | image { 587 | function = ARROW 588 | overlay_file = "assets/null.png" 589 | overlay_border = { 0, 0, 0, 0 } 590 | overlay_stretch = FALSE 591 | arrow_direction = LEFT 592 | } 593 | 594 | image { 595 | function = ARROW 596 | overlay_file = "assets/null.png" 597 | overlay_border = { 0, 0, 0, 0 } 598 | overlay_stretch = FALSE 599 | arrow_direction = RIGHT 600 | } 601 | 602 | # Sliders 603 | 604 | image { 605 | function = SLIDER 606 | state = NORMAL 607 | file = "assets/slider-horiz.png" 608 | border = { 5, 5, 3, 3 } 609 | stretch = TRUE 610 | orientation = HORIZONTAL 611 | } 612 | 613 | image { 614 | function = SLIDER 615 | state = ACTIVE 616 | file = "assets/slider-horiz-active.png" 617 | border = { 5, 5, 3, 3 } 618 | stretch = TRUE 619 | orientation = HORIZONTAL 620 | } 621 | 622 | image { 623 | function = SLIDER 624 | state = PRELIGHT 625 | file = "assets/slider-horiz-prelight.png" 626 | border = { 5, 5, 3, 3 } 627 | stretch = TRUE 628 | orientation = HORIZONTAL 629 | } 630 | 631 | image { 632 | function = SLIDER 633 | state = INSENSITIVE 634 | file = "assets/slider-horiz-insens.png" 635 | border = { 5, 5, 3, 3 } 636 | stretch = TRUE 637 | orientation = HORIZONTAL 638 | } 639 | 640 | # X Verticals 641 | 642 | image { 643 | function = SLIDER 644 | state = NORMAL 645 | file = "assets/slider-vert.png" 646 | border = { 3, 3, 5, 5 } 647 | stretch = TRUE 648 | orientation = VERTICAL 649 | } 650 | 651 | image { 652 | function = SLIDER 653 | state = ACTIVE 654 | file = "assets/slider-vert-active.png" 655 | border = { 3, 3, 5, 5 } 656 | stretch = TRUE 657 | orientation = VERTICAL 658 | } 659 | 660 | image { 661 | function = SLIDER 662 | state = PRELIGHT 663 | file = "assets/slider-vert-prelight.png" 664 | border = { 3, 3, 5, 5 } 665 | stretch = TRUE 666 | orientation = VERTICAL 667 | } 668 | 669 | image { 670 | function = SLIDER 671 | state = INSENSITIVE 672 | file = "assets/slider-vert-insens.png" 673 | border = { 3, 3, 5, 5 } 674 | stretch = TRUE 675 | orientation = VERTICAL 676 | } 677 | } 678 | } 679 | 680 | style "menu" { 681 | 682 | xthickness = 0 683 | ythickness = 0 684 | 685 | GtkMenuItem::arrow-scaling = 0.4 686 | 687 | bg[NORMAL] = @menu_bg 688 | bg[INSENSITIVE] = @menu_bg 689 | bg[PRELIGHT] = @menu_bg 690 | 691 | engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator 692 | 693 | image { 694 | function = HLINE 695 | file = "assets/null.png" 696 | border = { 0, 0, 0, 0 } 697 | stretch = TRUE 698 | } 699 | } 700 | } 701 | 702 | style "menu_framed_box" { 703 | 704 | engine "adwaita" { 705 | } 706 | } 707 | 708 | style "menu_item" 709 | { 710 | xthickness = 2 711 | ythickness = 5 712 | 713 | # HACK: Gtk doesn't actually read this value 714 | # while rendering the menu items, but Libreoffice 715 | # does; setting this value equal to the one in 716 | # fg[PRELIGHT] ensures a code path in the LO theming code 717 | # that falls back to a dark text color for menu item text 718 | # highlight. The price to pay is black text on menus as well, 719 | # but at least it's readable. 720 | # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 721 | bg[SELECTED] = @selected_fg_color 722 | 723 | fg[NORMAL] = @fg_color 724 | fg[SELECTED] = @selected_fg_color 725 | 726 | fg[PRELIGHT] = @selected_fg_color 727 | text[PRELIGHT] = @selected_fg_color 728 | 729 | engine "pixmap" { 730 | 731 | image { 732 | function = BOX 733 | state = PRELIGHT 734 | file = "assets/menuitem.png" 735 | border = { 1, 0, 1, 0 } 736 | stretch = TRUE 737 | } 738 | 739 | # Fix invisible scale trough on selected menuitems 740 | 741 | image { 742 | function = BOX 743 | detail = "trough-lower" 744 | file = "assets/trough-horizontal.png" 745 | border = { 8, 8, 0, 0 } 746 | stretch = TRUE 747 | orientation = HORIZONTAL 748 | } 749 | 750 | image { 751 | function = SLIDER 752 | state = PRELIGHT 753 | file = "assets/null.png" 754 | border = { 0, 0, 0, 0 } 755 | stretch = TRUE 756 | overlay_file = "assets/slider.png" 757 | overlay_stretch = FALSE 758 | orientation = HORIZONTAL 759 | } 760 | 761 | # Check Buttons 762 | 763 | image { 764 | function = CHECK 765 | recolorable = TRUE 766 | state = NORMAL 767 | shadow = OUT 768 | overlay_file = "assets/menu-checkbox-unchecked.png" 769 | overlay_stretch = FALSE 770 | } 771 | 772 | image { 773 | function = CHECK 774 | recolorable = TRUE 775 | state = PRELIGHT 776 | shadow = OUT 777 | overlay_file = "assets/menu-checkbox-unchecked-selected.png" 778 | overlay_stretch = FALSE 779 | } 780 | 781 | image { 782 | function = CHECK 783 | recolorable = TRUE 784 | state = ACTIVE 785 | shadow = OUT 786 | overlay_file = "assets/menu-checkbox-unchecked.png" 787 | overlay_stretch = FALSE 788 | } 789 | 790 | image { 791 | function = CHECK 792 | recolorable = TRUE 793 | state = INSENSITIVE 794 | shadow = OUT 795 | overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" 796 | overlay_stretch = FALSE 797 | } 798 | 799 | image { 800 | function = CHECK 801 | recolorable = TRUE 802 | state = NORMAL 803 | shadow = IN 804 | overlay_file = "assets/menu-checkbox-checked.png" 805 | overlay_stretch = FALSE 806 | } 807 | 808 | image { 809 | function = CHECK 810 | recolorable = TRUE 811 | state = PRELIGHT 812 | shadow = IN 813 | overlay_file = "assets/menu-checkbox-checked-selected.png" 814 | overlay_stretch = FALSE 815 | } 816 | 817 | image { 818 | function = CHECK 819 | recolorable = TRUE 820 | state = ACTIVE 821 | shadow = IN 822 | overlay_file = "assets/menu-checkbox-checked.png" 823 | overlay_stretch = FALSE 824 | } 825 | 826 | image { 827 | function = CHECK 828 | recolorable = TRUE 829 | state = INSENSITIVE 830 | shadow = IN 831 | overlay_file = "assets/menu-checkbox-checked-insensitive.png" 832 | overlay_stretch = FALSE 833 | } 834 | 835 | # Radio Buttons 836 | 837 | image { 838 | function = OPTION 839 | state = NORMAL 840 | shadow = OUT 841 | overlay_file = "assets/menu-radio-unchecked.png" 842 | overlay_stretch = FALSE 843 | } 844 | 845 | image { 846 | function = OPTION 847 | state = PRELIGHT 848 | shadow = OUT 849 | overlay_file = "assets/menu-radio-unchecked-selected.png" 850 | overlay_stretch = FALSE 851 | } 852 | 853 | image { 854 | function = OPTION 855 | state = ACTIVE 856 | shadow = OUT 857 | overlay_file = "assets/menu-radio-unchecked.png" 858 | overlay_stretch = FALSE 859 | } 860 | 861 | image { 862 | function = OPTION 863 | state = INSENSITIVE 864 | shadow = OUT 865 | overlay_file = "assets/menu-radio-unchecked-insensitive.png" 866 | overlay_stretch = FALSE 867 | } 868 | 869 | image { 870 | function = OPTION 871 | state = NORMAL 872 | shadow = IN 873 | overlay_file = "assets/menu-radio-checked.png" 874 | overlay_stretch = FALSE 875 | } 876 | 877 | image { 878 | function = OPTION 879 | state = PRELIGHT 880 | shadow = IN 881 | overlay_file = "assets/menu-radio-checked-selected.png" 882 | overlay_stretch = FALSE 883 | } 884 | 885 | image { 886 | function = OPTION 887 | state = ACTIVE 888 | shadow = IN 889 | overlay_file = "assets/menu-radio-checked.png" 890 | overlay_stretch = FALSE 891 | } 892 | 893 | image { 894 | function = OPTION 895 | state = INSENSITIVE 896 | shadow = IN 897 | overlay_file = "assets/menu-radio-checked-insensitive.png" 898 | overlay_stretch = FALSE 899 | } 900 | 901 | image { 902 | function = SHADOW # This fixes boxy Qt menu items 903 | file = "assets/null.png" 904 | border = { 4, 4, 4, 4 } 905 | stretch = TRUE 906 | } 907 | 908 | # Arrow Buttons 909 | 910 | image { 911 | function = ARROW 912 | state = NORMAL 913 | overlay_file = "assets/menu-arrow.png" 914 | overlay_border = { 0, 0, 0, 0 } 915 | overlay_stretch = FALSE 916 | arrow_direction = RIGHT 917 | } 918 | 919 | image { 920 | function = ARROW 921 | state = PRELIGHT 922 | overlay_file = "assets/menu-arrow-prelight.png" 923 | overlay_border = { 0, 0, 0, 0 } 924 | overlay_stretch = FALSE 925 | arrow_direction = RIGHT 926 | } 927 | } 928 | } 929 | 930 | style "button" { 931 | 932 | xthickness = 4 933 | ythickness = 4 934 | 935 | engine "pixmap" { 936 | 937 | image { 938 | function = BOX 939 | state = NORMAL 940 | file = "assets/button.png" 941 | border = { 4, 4, 4, 4 } 942 | stretch = TRUE 943 | } 944 | 945 | image { 946 | function = BOX 947 | state = PRELIGHT 948 | file = "assets/button-hover.png" 949 | border = { 4, 4, 4, 4 } 950 | stretch = TRUE 951 | } 952 | 953 | image { 954 | function = BOX 955 | state = ACTIVE 956 | file = "assets/button-active.png" 957 | border = { 4, 4, 4, 4 } 958 | stretch = TRUE 959 | } 960 | 961 | image { 962 | function = BOX 963 | state = INSENSITIVE 964 | file = "assets/button-insensitive.png" 965 | border = { 4, 4, 4, 4 } 966 | stretch = TRUE 967 | } 968 | } 969 | } 970 | 971 | style "checkbutton" { 972 | 973 | fg[PRELIGHT] = @text_color 974 | fg[ACTIVE] = @text_color 975 | 976 | } 977 | 978 | style "entry" { 979 | 980 | xthickness = 6 981 | ythickness = 4 982 | 983 | engine "pixmap" { 984 | 985 | image { 986 | function = SHADOW 987 | state = NORMAL 988 | detail = "entry" 989 | file = "assets/entry-bg.png" 990 | border = {6, 6, 6, 6} 991 | stretch = TRUE 992 | } 993 | 994 | image { 995 | function = SHADOW 996 | state = ACTIVE 997 | detail = "entry" 998 | file = "assets/entry-active-bg.png" 999 | border = {6, 6, 6, 6} 1000 | stretch = TRUE 1001 | } 1002 | 1003 | image { 1004 | function = SHADOW 1005 | state = INSENSITIVE 1006 | detail = "entry" 1007 | file = "assets/entry-disabled-bg.png" 1008 | border = {6, 6, 6, 6} 1009 | stretch = TRUE 1010 | } 1011 | 1012 | image { 1013 | function = FLAT_BOX 1014 | state = ACTIVE 1015 | detail = "entry_bg" 1016 | file = "assets/entry-background.png" 1017 | } 1018 | 1019 | image { 1020 | function = FLAT_BOX 1021 | state = INSENSITIVE 1022 | detail = "entry_bg" 1023 | file = "assets/entry-background-disabled.png" 1024 | } 1025 | 1026 | image { 1027 | function = FLAT_BOX 1028 | detail = "entry_bg" 1029 | file = "assets/entry-background.png" 1030 | } 1031 | } 1032 | } 1033 | 1034 | style "notebook_entry" { 1035 | 1036 | engine "pixmap" { 1037 | 1038 | image { 1039 | function = SHADOW 1040 | state = NORMAL 1041 | detail = "entry" 1042 | file = "assets/entry-notebook.png" 1043 | border = {6, 6, 6, 6} 1044 | stretch = TRUE 1045 | } 1046 | 1047 | image { 1048 | function = SHADOW 1049 | state = ACTIVE 1050 | detail = "entry" 1051 | file = "assets/entry-active-notebook.png" 1052 | border = {6, 6, 6, 6} 1053 | stretch = TRUE 1054 | } 1055 | 1056 | image { 1057 | function = SHADOW 1058 | state = INSENSITIVE 1059 | detail = "entry" 1060 | file = "assets/entry-disabled-notebook.png" 1061 | border = {6, 6, 6, 6} 1062 | stretch = TRUE 1063 | } 1064 | } 1065 | } 1066 | 1067 | style "notebook_tab_label" { 1068 | 1069 | fg[ACTIVE] = @text_color 1070 | 1071 | } 1072 | 1073 | style "combobox_entry" 1074 | { 1075 | xthickness = 3 1076 | ythickness = 4 1077 | 1078 | engine "pixmap" { 1079 | 1080 | # LTR version 1081 | 1082 | image { 1083 | function = SHADOW 1084 | detail = "entry" 1085 | state = NORMAL 1086 | shadow = IN 1087 | file = "assets/combo-entry.png" 1088 | border = { 4, 4, 5, 4 } 1089 | stretch = TRUE 1090 | direction = LTR 1091 | } 1092 | 1093 | image { 1094 | function = SHADOW 1095 | detail = "entry" 1096 | state = INSENSITIVE 1097 | shadow = IN 1098 | file = "assets/combo-entry-insensitive.png" 1099 | border = { 4, 4, 5, 4 } 1100 | stretch = TRUE 1101 | direction = LTR 1102 | } 1103 | 1104 | image { 1105 | function = SHADOW 1106 | detail = "entry" 1107 | state = ACTIVE 1108 | file = "assets/combo-entry-focus.png" 1109 | border = { 4, 4, 5, 4 } 1110 | stretch = TRUE 1111 | direction = LTR 1112 | } 1113 | 1114 | # RTL version 1115 | 1116 | image { 1117 | function = SHADOW 1118 | detail = "entry" 1119 | state = NORMAL 1120 | shadow = IN 1121 | file = "assets/combo-entry-rtl.png" 1122 | border = { 4, 4, 5, 4 } 1123 | stretch = TRUE 1124 | direction = RTL 1125 | } 1126 | 1127 | image { 1128 | function = SHADOW 1129 | detail = "entry" 1130 | state = INSENSITIVE 1131 | shadow = IN 1132 | file = "assets/combo-entry-insensitive-rtl.png" 1133 | border = { 4, 4, 5, 4 } 1134 | stretch = TRUE 1135 | direction = RTL 1136 | } 1137 | 1138 | image { 1139 | function = SHADOW 1140 | detail = "entry" 1141 | state = ACTIVE 1142 | file = "assets/combo-entry-focus-rtl.png" 1143 | border = { 4, 4, 5, 4 } 1144 | stretch = TRUE 1145 | direction = RTL 1146 | } 1147 | } 1148 | } 1149 | 1150 | style "notebook_combobox_entry" { 1151 | 1152 | engine "pixmap" { 1153 | 1154 | # LTR version 1155 | 1156 | image { 1157 | function = SHADOW 1158 | detail = "entry" 1159 | state = NORMAL 1160 | shadow = IN 1161 | file = "assets/combo-entry-notebook.png" 1162 | border = { 4, 4, 5, 4 } 1163 | stretch = TRUE 1164 | direction = LTR 1165 | } 1166 | 1167 | image { 1168 | function = SHADOW 1169 | detail = "entry" 1170 | state = INSENSITIVE 1171 | shadow = IN 1172 | file = "assets/combo-entry-insensitive-notebook.png" 1173 | border = { 4, 4, 5, 4 } 1174 | stretch = TRUE 1175 | direction = LTR 1176 | } 1177 | 1178 | image { 1179 | function = SHADOW 1180 | detail = "entry" 1181 | state = ACTIVE 1182 | file = "assets/combo-entry-focus-notebook.png" 1183 | border = { 4, 4, 5, 4 } 1184 | stretch = TRUE 1185 | direction = LTR 1186 | } 1187 | 1188 | # RTL version 1189 | 1190 | image { 1191 | function = SHADOW 1192 | detail = "entry" 1193 | state = NORMAL 1194 | shadow = IN 1195 | file = "assets/combo-entry-notebook-rtl.png" 1196 | border = { 4, 4, 5, 4 } 1197 | stretch = TRUE 1198 | direction = RTL 1199 | } 1200 | 1201 | image { 1202 | function = SHADOW 1203 | detail = "entry" 1204 | state = INSENSITIVE 1205 | shadow = IN 1206 | file = "assets/combo-entry-insensitive-notebook-rtl.png" 1207 | border = { 4, 4, 5, 4 } 1208 | stretch = TRUE 1209 | direction = RTL 1210 | } 1211 | 1212 | image { 1213 | function = SHADOW 1214 | detail = "entry" 1215 | state = ACTIVE 1216 | file = "assets/combo-entry-focus-notebook-rtl.png" 1217 | border = { 4, 4, 5, 4 } 1218 | stretch = TRUE 1219 | direction = RTL 1220 | } 1221 | } 1222 | } 1223 | 1224 | style "combobox_entry_button" 1225 | { 1226 | xthickness = 6 1227 | 1228 | fg[ACTIVE] = @text_color 1229 | 1230 | engine "pixmap" { 1231 | 1232 | # LTR version 1233 | 1234 | image { 1235 | function = BOX 1236 | state = NORMAL 1237 | file = "assets/combo-entry-button.png" 1238 | border = { 4, 4, 5, 4 } 1239 | stretch = TRUE 1240 | direction = LTR 1241 | } 1242 | 1243 | image { 1244 | function = BOX 1245 | state = PRELIGHT 1246 | file = "assets/combo-entry-button.png" 1247 | border = { 4, 4, 5, 4 } 1248 | stretch = TRUE 1249 | direction = LTR 1250 | } 1251 | 1252 | image { 1253 | function = BOX 1254 | state = INSENSITIVE 1255 | file = "assets/combo-entry-button-insensitive.png" 1256 | border = { 4, 4, 5, 4 } 1257 | stretch = TRUE 1258 | direction = LTR 1259 | } 1260 | 1261 | image { 1262 | function = BOX 1263 | state = ACTIVE 1264 | file = "assets/combo-entry-button-active.png" 1265 | border = { 4, 4, 5, 4 } 1266 | stretch = TRUE 1267 | direction = LTR 1268 | } 1269 | 1270 | # RTL version 1271 | image { 1272 | function = BOX 1273 | state = NORMAL 1274 | file = "assets/combo-entry-button-rtl.png" 1275 | border = { 4, 4, 5, 4 } 1276 | stretch = TRUE 1277 | direction = RTL 1278 | } 1279 | 1280 | image { 1281 | function = BOX 1282 | state = PRELIGHT 1283 | file = "assets/combo-entry-button-rtl.png" 1284 | border = { 4, 4, 5, 4 } 1285 | stretch = TRUE 1286 | direction = RTL 1287 | } 1288 | 1289 | image { 1290 | function = BOX 1291 | state = INSENSITIVE 1292 | file = "assets/combo-entry-button-insensitive-rtl.png" 1293 | border = { 4, 4, 5, 4 } 1294 | stretch = TRUE 1295 | direction = RTL 1296 | } 1297 | 1298 | image { 1299 | function = BOX 1300 | state = ACTIVE 1301 | file = "assets/combo-entry-button-active-rtl.png" 1302 | border = { 4, 4, 5, 4 } 1303 | stretch = TRUE 1304 | direction = RTL 1305 | } 1306 | } 1307 | } 1308 | 1309 | style "spinbutton" { 1310 | 1311 | bg[NORMAL] = @bg_color 1312 | 1313 | xthickness = 6 1314 | ythickness = 4 1315 | 1316 | engine "pixmap" { 1317 | 1318 | image { 1319 | function = ARROW 1320 | } 1321 | 1322 | # Spin-Up LTR 1323 | 1324 | image { 1325 | function = BOX 1326 | state = NORMAL 1327 | detail = "spinbutton_up" 1328 | file = "assets/up-background.png" 1329 | border = { 1, 4, 5, 0 } 1330 | stretch = TRUE 1331 | overlay_file = "assets/arrow-up-small.png" 1332 | overlay_stretch = FALSE 1333 | direction = LTR 1334 | } 1335 | 1336 | image { 1337 | function = BOX 1338 | state = PRELIGHT 1339 | detail = "spinbutton_up" 1340 | file = "assets/up-background.png" 1341 | border = { 1, 4, 5, 0 } 1342 | stretch = TRUE 1343 | overlay_file = "assets/arrow-up-small-prelight.png" 1344 | overlay_stretch = FALSE 1345 | direction = LTR 1346 | } 1347 | 1348 | image { 1349 | function = BOX 1350 | state = INSENSITIVE 1351 | detail = "spinbutton_up" 1352 | file = "assets/up-background-disable.png" 1353 | border = { 1, 4, 5, 0 } 1354 | stretch = TRUE 1355 | overlay_file = "assets/arrow-up-small-insens.png" 1356 | overlay_stretch = FALSE 1357 | direction = LTR 1358 | } 1359 | 1360 | image { 1361 | function = BOX 1362 | state = ACTIVE 1363 | detail = "spinbutton_up" 1364 | file = "assets/up-background.png" 1365 | border = { 1, 4, 5, 0 } 1366 | stretch = TRUE 1367 | overlay_file = "assets/arrow-up-small-prelight.png" 1368 | overlay_stretch = FALSE 1369 | direction = LTR 1370 | } 1371 | 1372 | # Spin-Up RTL 1373 | 1374 | image { 1375 | function = BOX 1376 | state = NORMAL 1377 | detail = "spinbutton_up" 1378 | file = "assets/up-background-rtl.png" 1379 | border = { 4, 1, 5, 0 } 1380 | stretch = TRUE 1381 | overlay_file = "assets/arrow-up-small.png" 1382 | overlay_stretch = FALSE 1383 | direction = RTL 1384 | } 1385 | 1386 | image { 1387 | function = BOX 1388 | state = PRELIGHT 1389 | detail = "spinbutton_up" 1390 | file = "assets/up-background-rtl.png" 1391 | border = { 4, 1, 5, 0 } 1392 | stretch = TRUE 1393 | overlay_file = "assets/arrow-up-small-prelight.png" 1394 | overlay_stretch = FALSE 1395 | direction = RTL 1396 | } 1397 | 1398 | image { 1399 | function = BOX 1400 | state = INSENSITIVE 1401 | detail = "spinbutton_up" 1402 | file = "assets/up-background-disable-rtl.png" 1403 | border = { 4, 1, 5, 0 } 1404 | stretch = TRUE 1405 | overlay_file = "assets/arrow-up-small-insens.png" 1406 | overlay_stretch = FALSE 1407 | direction = RTL 1408 | } 1409 | 1410 | image { 1411 | function = BOX 1412 | state = ACTIVE 1413 | detail = "spinbutton_up" 1414 | file = "assets/up-background-rtl.png" 1415 | border = { 4, 1, 5, 0 } 1416 | stretch = TRUE 1417 | overlay_file = "assets/arrow-up-small-prelight.png" 1418 | overlay_stretch = FALSE 1419 | direction = RTL 1420 | } 1421 | 1422 | # Spin-Down LTR 1423 | 1424 | image { 1425 | function = BOX 1426 | state = NORMAL 1427 | detail = "spinbutton_down" 1428 | file = "assets/down-background.png" 1429 | border = { 1, 4, 1, 4 } 1430 | stretch = TRUE 1431 | overlay_file = "assets/arrow-down-small.png" 1432 | overlay_stretch = FALSE 1433 | direction = LTR 1434 | } 1435 | 1436 | image { 1437 | function = BOX 1438 | state = PRELIGHT 1439 | detail = "spinbutton_down" 1440 | file = "assets/down-background.png" 1441 | border = { 1, 4, 1, 4 } 1442 | stretch = TRUE 1443 | overlay_file = "assets/arrow-down-small-prelight.png" 1444 | overlay_stretch = FALSE 1445 | direction = LTR 1446 | } 1447 | 1448 | image { 1449 | function = BOX 1450 | state = INSENSITIVE 1451 | detail = "spinbutton_down" 1452 | file = "assets/down-background-disable.png" 1453 | border = { 1, 4, 1, 4 } 1454 | stretch = TRUE 1455 | overlay_file = "assets/arrow-down-small-insens.png" 1456 | overlay_stretch = FALSE 1457 | direction = LTR 1458 | } 1459 | 1460 | image { 1461 | function = BOX 1462 | state = ACTIVE 1463 | detail = "spinbutton_down" 1464 | file = "assets/down-background.png" 1465 | border = { 1, 4, 1, 4 } 1466 | stretch = TRUE 1467 | overlay_file = "assets/arrow-down-small-prelight.png" 1468 | overlay_stretch = FALSE 1469 | direction = LTR 1470 | } 1471 | 1472 | # Spin-Down RTL 1473 | 1474 | image { 1475 | function = BOX 1476 | state = NORMAL 1477 | detail = "spinbutton_down" 1478 | file = "assets/down-background-rtl.png" 1479 | border = { 4, 1, 1, 4 } 1480 | stretch = TRUE 1481 | overlay_file = "assets/arrow-down-small.png" 1482 | overlay_stretch = FALSE 1483 | direction = RTL 1484 | } 1485 | 1486 | image { 1487 | function = BOX 1488 | state = PRELIGHT 1489 | detail = "spinbutton_down" 1490 | file = "assets/down-background-rtl.png" 1491 | border = { 4, 1, 1, 4 } 1492 | stretch = TRUE 1493 | overlay_file = "assets/arrow-down-small-prelight.png" 1494 | overlay_stretch = FALSE 1495 | direction = RTL 1496 | } 1497 | 1498 | image { 1499 | function = BOX 1500 | state = INSENSITIVE 1501 | detail = "spinbutton_down" 1502 | file = "assets/down-background-disable-rtl.png" 1503 | border = { 4, 1, 1, 4 } 1504 | stretch = TRUE 1505 | overlay_file = "assets/arrow-down-small-insens.png" 1506 | overlay_stretch = FALSE 1507 | direction = RTL 1508 | } 1509 | 1510 | image { 1511 | function = BOX 1512 | state = ACTIVE 1513 | detail = "spinbutton_down" 1514 | file = "assets/down-background-rtl.png" 1515 | border = { 4, 1, 1, 4 } 1516 | stretch = TRUE 1517 | overlay_file = "assets/arrow-down-small-prelight.png" 1518 | overlay_stretch = FALSE 1519 | direction = RTL 1520 | } 1521 | } 1522 | } 1523 | 1524 | style "gimp_spin_scale" { 1525 | 1526 | bg[NORMAL] = @base_color 1527 | 1528 | engine "pixmap" { 1529 | 1530 | image { 1531 | function = FLAT_BOX 1532 | detail = "entry_bg" 1533 | state = NORMAL 1534 | } 1535 | 1536 | image { 1537 | function = FLAT_BOX 1538 | detail = "entry_bg" 1539 | state = ACTIVE 1540 | } 1541 | 1542 | image { 1543 | function = BOX 1544 | state = NORMAL 1545 | detail = "spinbutton_up" 1546 | overlay_file = "assets/arrow-up-small.png" 1547 | overlay_stretch = FALSE 1548 | } 1549 | 1550 | image { 1551 | function = BOX 1552 | state = PRELIGHT 1553 | detail = "spinbutton_up" 1554 | overlay_file = "assets/arrow-up-small-prelight.png" 1555 | overlay_stretch = FALSE 1556 | } 1557 | 1558 | image { 1559 | function = BOX 1560 | state = ACTIVE 1561 | detail = "spinbutton_up" 1562 | overlay_file = "assets/arrow-up-small-prelight.png" 1563 | overlay_stretch = FALSE 1564 | } 1565 | 1566 | image { 1567 | function = BOX 1568 | state = INSENSITIVE 1569 | detail = "spinbutton_up" 1570 | overlay_file = "assets/arrow-up-small-insens.png" 1571 | overlay_stretch = FALSE 1572 | } 1573 | 1574 | image { 1575 | function = BOX 1576 | state = NORMAL 1577 | detail = "spinbutton_down" 1578 | overlay_file = "assets/arrow-down-small.png" 1579 | overlay_stretch = FALSE 1580 | } 1581 | 1582 | image { 1583 | function = BOX 1584 | state = PRELIGHT 1585 | detail = "spinbutton_down" 1586 | overlay_file = "assets/arrow-down-small-prelight.png" 1587 | overlay_stretch = FALSE 1588 | } 1589 | 1590 | image { 1591 | function = BOX 1592 | state = ACTIVE 1593 | detail = "spinbutton_down" 1594 | overlay_file = "assets/arrow-down-small-prelight.png" 1595 | overlay_stretch = FALSE 1596 | } 1597 | 1598 | image { 1599 | function = BOX 1600 | state = INSENSITIVE 1601 | detail = "spinbutton_down" 1602 | overlay_file = "assets/arrow-down-small-insens.png" 1603 | overlay_stretch = FALSE 1604 | } 1605 | } 1606 | } 1607 | 1608 | style "notebook" { 1609 | 1610 | xthickness = 5 1611 | ythickness = 2 1612 | 1613 | engine "pixmap" { 1614 | 1615 | image { 1616 | function = EXTENSION 1617 | state = ACTIVE 1618 | file = "assets/null.png" 1619 | border = { 0,0,0,0 } 1620 | stretch = TRUE 1621 | gap_side = TOP 1622 | } 1623 | 1624 | image { 1625 | function = EXTENSION 1626 | state = ACTIVE 1627 | file = "assets/null.png" 1628 | border = { 0,0,0,0 } 1629 | stretch = TRUE 1630 | gap_side = BOTTOM 1631 | } 1632 | 1633 | image { 1634 | function = EXTENSION 1635 | state = ACTIVE 1636 | file = "assets/null.png" 1637 | border = { 0,0,0,0 } 1638 | stretch = TRUE 1639 | gap_side = RIGHT 1640 | } 1641 | 1642 | image { 1643 | function = EXTENSION 1644 | state = ACTIVE 1645 | file = "assets/null.png" 1646 | border = { 0,0,0,0 } 1647 | stretch = TRUE 1648 | gap_side = LEFT 1649 | } 1650 | 1651 | image { 1652 | function = EXTENSION 1653 | file = "assets/tab-top-active.png" 1654 | border = { 3,3,3,3 } 1655 | stretch = TRUE 1656 | gap_side = BOTTOM 1657 | } 1658 | 1659 | image { 1660 | function = EXTENSION 1661 | file = "assets/tab-bottom-active.png" 1662 | border = { 3,3,3,3 } 1663 | stretch = TRUE 1664 | gap_side = TOP 1665 | } 1666 | 1667 | image { 1668 | function = EXTENSION 1669 | file = "assets/tab-left-active.png" 1670 | border = { 3,3,3,3 } 1671 | stretch = TRUE 1672 | gap_side = RIGHT 1673 | } 1674 | 1675 | image { 1676 | function = EXTENSION 1677 | file = "assets/tab-right-active.png" 1678 | border = { 3,3,3,3 } 1679 | stretch = TRUE 1680 | gap_side = LEFT 1681 | } 1682 | 1683 | # How to draw boxes with a gap on one side (ie the page of a notebook) 1684 | 1685 | image { 1686 | function = BOX_GAP 1687 | file = "assets/notebook.png" 1688 | border = { 4, 4, 4, 4 } 1689 | stretch = TRUE 1690 | gap_file = "assets/notebook-gap-horiz.png" 1691 | gap_border = { 1, 1, 0, 0 } 1692 | gap_side = TOP 1693 | } 1694 | 1695 | image { 1696 | function = BOX_GAP 1697 | file = "assets/notebook.png" 1698 | border = { 4, 4, 4, 4 } 1699 | stretch = TRUE 1700 | gap_file = "assets/notebook-gap-horiz.png" 1701 | gap_border = { 1, 1, 0, 0 } 1702 | gap_side = BOTTOM 1703 | } 1704 | 1705 | image { 1706 | function = BOX_GAP 1707 | file = "assets/notebook.png" 1708 | border = { 4, 4, 4, 4 } 1709 | stretch = TRUE 1710 | gap_file = "assets/notebook-gap-vert.png" 1711 | gap_border = { 0, 0, 1, 1 } 1712 | gap_side = LEFT 1713 | } 1714 | 1715 | image { 1716 | function = BOX_GAP 1717 | file = "assets/notebook.png" 1718 | border = { 4, 4, 4, 4 } 1719 | stretch = TRUE 1720 | gap_file = "assets/notebook-gap-vert.png" 1721 | gap_border = { 0, 0, 1, 1 } 1722 | gap_side = RIGHT 1723 | } 1724 | 1725 | # How to draw the box of a notebook when it isnt attached to a tab 1726 | 1727 | image { 1728 | function = BOX 1729 | file = "assets/notebook.png" 1730 | border = { 4, 4, 4, 4 } 1731 | stretch = TRUE 1732 | } 1733 | } 1734 | } 1735 | 1736 | style "handlebox" { 1737 | 1738 | engine "pixmap" { 1739 | 1740 | image { 1741 | function = BOX 1742 | file = "assets/null.png" 1743 | border = { 4, 4, 4, 4 } 1744 | stretch = TRUE 1745 | detail = "handlebox_bin" 1746 | shadow = IN 1747 | } 1748 | 1749 | image { 1750 | function = BOX 1751 | file = "assets/null.png" 1752 | border = { 4, 4, 4, 4 } 1753 | stretch = TRUE 1754 | detail = "handlebox_bin" 1755 | shadow = OUT 1756 | } 1757 | } 1758 | } 1759 | 1760 | style "combobox_separator" { 1761 | 1762 | xthickness = 0 1763 | ythickness = 0 1764 | GtkWidget::wide-separators = 1 1765 | 1766 | } 1767 | 1768 | style "combobox" { 1769 | 1770 | xthickness = 0 1771 | ythickness = 0 1772 | 1773 | } 1774 | 1775 | style "combobox_button" { 1776 | 1777 | xthickness = 3 1778 | ythickness = 3 1779 | 1780 | } 1781 | 1782 | style "range" { 1783 | 1784 | engine "pixmap" { 1785 | 1786 | image { 1787 | function = BOX 1788 | detail = "trough-upper" 1789 | file = "assets/trough-horizontal.png" 1790 | border = { 8, 8, 0, 0 } 1791 | stretch = TRUE 1792 | orientation = HORIZONTAL 1793 | } 1794 | 1795 | image { 1796 | function = BOX 1797 | detail = "trough-lower" 1798 | file = "assets/trough-horizontal-active.png" 1799 | border = { 8, 8, 0, 0 } 1800 | stretch = TRUE 1801 | orientation = HORIZONTAL 1802 | } 1803 | 1804 | image { 1805 | function = BOX 1806 | detail = "trough-upper" 1807 | file = "assets/trough-vertical.png" 1808 | border = { 0, 0, 8, 8 } 1809 | stretch = TRUE 1810 | orientation = VERTICAL 1811 | } 1812 | 1813 | image { 1814 | function = BOX 1815 | detail = "trough-lower" 1816 | file = "assets/trough-vertical-active.png" 1817 | border = { 0, 0, 8, 8 } 1818 | stretch = TRUE 1819 | orientation = VERTICAL 1820 | } 1821 | 1822 | # Horizontal 1823 | 1824 | image { 1825 | function = SLIDER 1826 | state = NORMAL 1827 | file = "assets/null.png" 1828 | border = { 0, 0, 0, 0 } 1829 | stretch = TRUE 1830 | overlay_file = "assets/slider.png" 1831 | overlay_stretch = FALSE 1832 | orientation = HORIZONTAL 1833 | } 1834 | 1835 | image { 1836 | function = SLIDER 1837 | state = PRELIGHT 1838 | file = "assets/null.png" 1839 | border = { 0, 0, 0, 0 } 1840 | stretch = TRUE 1841 | overlay_file = "assets/slider-prelight.png" 1842 | overlay_stretch = FALSE 1843 | orientation = HORIZONTAL 1844 | } 1845 | 1846 | image { 1847 | function = SLIDER 1848 | state = INSENSITIVE 1849 | file = "assets/null.png" 1850 | border = { 0, 0, 0, 0 } 1851 | stretch = TRUE 1852 | overlay_file = "assets/slider-insensitive.png" 1853 | overlay_stretch = FALSE 1854 | orientation = HORIZONTAL 1855 | } 1856 | 1857 | # Vertical 1858 | 1859 | image { 1860 | function = SLIDER 1861 | state = NORMAL 1862 | file = "assets/null.png" 1863 | border = { 0, 0, 0, 0 } 1864 | stretch = TRUE 1865 | overlay_file = "assets/slider.png" 1866 | overlay_stretch = FALSE 1867 | orientation = VERTICAL 1868 | } 1869 | 1870 | image { 1871 | function = SLIDER 1872 | state = PRELIGHT 1873 | file = "assets/null.png" 1874 | border = { 0, 0, 0, 0 } 1875 | stretch = TRUE 1876 | overlay_file = "assets/slider-prelight.png" 1877 | overlay_stretch = FALSE 1878 | orientation = VERTICAL 1879 | } 1880 | 1881 | image { 1882 | function = SLIDER 1883 | state = INSENSITIVE 1884 | file = "assets/null.png" 1885 | border = { 0, 0, 0, 0 } 1886 | stretch = TRUE 1887 | overlay_file = "assets/slider-insensitive.png" 1888 | overlay_stretch = FALSE 1889 | orientation = VERTICAL 1890 | } 1891 | 1892 | # Function below removes ugly boxes 1893 | 1894 | image { 1895 | function = BOX 1896 | file = "assets/null.png" 1897 | border = { 3, 3, 3, 3 } 1898 | stretch = TRUE 1899 | } 1900 | } 1901 | } 1902 | 1903 | style "progressbar" { 1904 | 1905 | xthickness = 1 1906 | ythickness = 1 1907 | 1908 | fg[NORMAL] = @fg_color 1909 | fg[PRELIGHT] = @selected_fg_color 1910 | 1911 | engine "pixmap" { 1912 | 1913 | image { 1914 | function = BOX 1915 | detail = "trough" 1916 | file = "assets/trough-progressbar.png" 1917 | border = { 4, 4, 4, 4 } 1918 | stretch = TRUE 1919 | orientation = HORIZONTAL 1920 | } 1921 | 1922 | image { 1923 | function = BOX 1924 | detail = "bar" 1925 | file = "assets/progressbar.png" 1926 | stretch = TRUE 1927 | border = { 3, 3, 3, 3 } 1928 | orientation = HORIZONTAL 1929 | } 1930 | 1931 | image { 1932 | function = BOX 1933 | detail = "trough" 1934 | file = "assets/trough-progressbar_v.png" 1935 | border = { 4, 4, 4, 4 } 1936 | stretch = TRUE 1937 | orientation = VERTICAL 1938 | } 1939 | 1940 | image { 1941 | function = BOX 1942 | detail = "bar" 1943 | file = "assets/progressbar_v.png" 1944 | stretch = TRUE 1945 | border = { 3, 3, 3, 3 } 1946 | orientation = VERTICAL 1947 | } 1948 | } 1949 | } 1950 | 1951 | style "separator_menu_item" { 1952 | 1953 | engine "pixmap" { 1954 | 1955 | image { 1956 | function = BOX 1957 | file = "assets/null.png" 1958 | border = { 0, 0, 1, 0 } 1959 | stretch = TRUE 1960 | } 1961 | } 1962 | } 1963 | 1964 | style "treeview_header" { 1965 | ythickness = 1 1966 | 1967 | fg[PRELIGHT] = mix(0.70, @text_color, @base_color) 1968 | font_name = "Bold" 1969 | 1970 | engine "pixmap" { 1971 | 1972 | image { 1973 | function = BOX 1974 | file = "assets/tree_header.png" 1975 | border = { 1, 1, 1, 1 } 1976 | stretch = TRUE 1977 | } 1978 | } 1979 | } 1980 | 1981 | # Treeview Rows 1982 | 1983 | style "treeview" { 1984 | 1985 | xthickness = 2 1986 | ythickness = 0 1987 | 1988 | 1989 | } 1990 | 1991 | style "scrolled_window" { 1992 | 1993 | xthickness = 1 1994 | ythickness = 1 1995 | 1996 | engine "pixmap" { 1997 | 1998 | image { 1999 | function = SHADOW 2000 | file = "assets/frame.png" 2001 | border = { 5, 5, 5, 5 } 2002 | stretch = TRUE 2003 | } 2004 | } 2005 | } 2006 | 2007 | style "frame" { 2008 | 2009 | xthickness = 1 2010 | ythickness = 1 2011 | 2012 | engine "pixmap" { 2013 | 2014 | image { 2015 | function = SHADOW 2016 | file = "assets/frame.png" 2017 | border = { 1, 1, 1, 1 } 2018 | stretch = TRUE 2019 | shadow = IN 2020 | } 2021 | 2022 | image { 2023 | function = SHADOW_GAP 2024 | file = "assets/frame.png" 2025 | border = { 1, 1, 1, 1 } 2026 | stretch = TRUE 2027 | gap_start_file = "assets/frame-gap-start.png" 2028 | gap_start_border = { 1, 0, 0, 0 } 2029 | gap_end_file = "assets/frame-gap-end.png" 2030 | gap_end_border = { 0, 1, 0, 0 } 2031 | shadow = IN 2032 | } 2033 | 2034 | image { 2035 | function = SHADOW 2036 | file = "assets/frame.png" 2037 | border = { 1, 1, 1, 1 } 2038 | stretch = TRUE 2039 | shadow = OUT 2040 | } 2041 | 2042 | image { 2043 | function = SHADOW_GAP 2044 | file = "assets/frame.png" 2045 | border = { 1, 1, 1, 1 } 2046 | stretch = TRUE 2047 | gap_start_file = "assets/frame-gap-start.png" 2048 | gap_start_border = { 1, 0, 0, 0 } 2049 | gap_end_file = "assets/frame-gap-end.png" 2050 | gap_end_border = { 0, 1, 0, 0 } 2051 | shadow = OUT 2052 | } 2053 | 2054 | image { 2055 | function = SHADOW 2056 | file = "assets/frame.png" 2057 | border = { 1, 1, 1, 1 } 2058 | stretch = TRUE 2059 | shadow = ETCHED_IN 2060 | } 2061 | 2062 | image { 2063 | function = SHADOW_GAP 2064 | file = "assets/frame.png" 2065 | border = { 1, 1, 1, 1 } 2066 | stretch = TRUE 2067 | gap_start_file = "assets/frame-gap-start.png" 2068 | gap_start_border = { 1, 0, 0, 0 } 2069 | gap_end_file = "assets/frame-gap-end.png" 2070 | gap_end_border = { 0, 1, 0, 0 } 2071 | shadow = ETCHED_IN 2072 | } 2073 | 2074 | image { 2075 | function = SHADOW 2076 | file = "assets/frame.png" 2077 | border = { 1, 1, 1, 1 } 2078 | stretch = TRUE 2079 | shadow = ETCHED_OUT 2080 | } 2081 | 2082 | image { 2083 | function = SHADOW_GAP 2084 | file = "assets/frame.png" 2085 | border = { 1, 1, 1, 1 } 2086 | stretch = TRUE 2087 | gap_start_file = "assets/frame-gap-start.png" 2088 | gap_start_border = { 1, 0, 0, 0 } 2089 | gap_end_file = "assets/frame-gap-end.png" 2090 | gap_end_border = { 0, 1, 0, 0 } 2091 | shadow = ETCHED_OUT 2092 | } 2093 | } 2094 | } 2095 | 2096 | style "gimp_toolbox_frame" { 2097 | 2098 | engine "pixmap" { 2099 | 2100 | image { 2101 | function = SHADOW 2102 | } 2103 | } 2104 | } 2105 | 2106 | style "toolbar" { 2107 | 2108 | engine "pixmap" { 2109 | 2110 | image { 2111 | function = BOX 2112 | file = "assets/toolbar.png" 2113 | stretch = TRUE 2114 | border = { 1, 1, 1, 1 } 2115 | } 2116 | 2117 | image { 2118 | function = HANDLE 2119 | overlay_file = "assets/handle-h.png" 2120 | overlay_stretch = FALSE 2121 | orientation = HORIZONTAL 2122 | } 2123 | 2124 | image { 2125 | function = HANDLE 2126 | overlay_file = "assets/handle-v.png" 2127 | overlay_stretch = FALSE 2128 | orientation = VERTICAL 2129 | } 2130 | 2131 | image { 2132 | function = VLINE 2133 | recolorable = TRUE 2134 | file = "assets/null.png" 2135 | } 2136 | 2137 | image { 2138 | function = HLINE 2139 | recolorable = TRUE 2140 | file = "assets/null.png" 2141 | } 2142 | } 2143 | } 2144 | 2145 | style "inline_toolbar" { 2146 | 2147 | GtkToolbar::button-relief = GTK_RELIEF_NORMAL 2148 | 2149 | engine "pixmap" { 2150 | 2151 | image { 2152 | function = BOX 2153 | file = "assets/inline-toolbar.png" 2154 | stretch = TRUE 2155 | border = { 1, 1, 1, 1 } 2156 | } 2157 | } 2158 | } 2159 | 2160 | style "notebook_viewport" { 2161 | 2162 | bg[NORMAL] = @notebook_bg 2163 | } 2164 | 2165 | 2166 | style "notebook_eventbox" { 2167 | 2168 | bg[NORMAL] = @notebook_bg 2169 | bg[ACTIVE] = @bg_color 2170 | } 2171 | 2172 | style "tooltips" { 2173 | 2174 | xthickness = 8 2175 | ythickness = 4 2176 | 2177 | bg[NORMAL] = @tooltip_bg_color 2178 | fg[NORMAL] = @tooltip_fg_color 2179 | bg[SELECTED] = @tooltip_bg_color 2180 | 2181 | } 2182 | 2183 | style "eclipse-tooltips" { 2184 | 2185 | xthickness = 8 2186 | ythickness = 4 2187 | 2188 | bg[NORMAL] = shade(1.05, @bg_color) 2189 | fg[NORMAL] = @text_color 2190 | bg[SELECTED] = shade(1.05, @bg_color) 2191 | 2192 | } 2193 | 2194 | style "xfdesktop-icon-view" { 2195 | XfdesktopIconView::label-alpha = 0 2196 | XfdesktopIconView::selected-label-alpha = 100 2197 | XfdesktopIconView::shadow-x-offset = 0 2198 | XfdesktopIconView::shadow-y-offset = 1 2199 | XfdesktopIconView::selected-shadow-x-offset = 0 2200 | XfdesktopIconView::selected-shadow-y-offset = 1 2201 | XfdesktopIconView::shadow-color = "#000000" 2202 | XfdesktopIconView::selected-shadow-color = "#000000" 2203 | XfdesktopIconView::shadow-blur-radius = 2 2204 | XfdesktopIconView::cell-spacing = 2 2205 | XfdesktopIconView::cell-padding = 6 2206 | XfdesktopIconView::cell-text-width-proportion = 1.9 2207 | 2208 | fg[NORMAL] = @selected_fg_color 2209 | fg[ACTIVE] = @selected_fg_color 2210 | } 2211 | 2212 | style "xfwm-tabwin" { 2213 | Xfwm4TabwinWidget::border-width = 1 2214 | Xfwm4TabwinWidget::border-alpha = 1.0 2215 | Xfwm4TabwinWidget::icon-size = 64 2216 | Xfwm4TabwinWidget::alpha = 1.0 2217 | Xfwm4TabwinWidget::border-radius = 2 2218 | 2219 | bg[NORMAL] = @bg_color 2220 | bg[SELECTED] = @bg_color 2221 | 2222 | fg[NORMAL] = @fg_color 2223 | 2224 | engine "murrine" { 2225 | contrast = 0.7 2226 | glazestyle = 0 2227 | glowstyle = 0 2228 | highlight_shade = 1.0 2229 | gradient_shades = {1.0,1.0,1.0,1.0} 2230 | border_shades = { 0.8, 0.8 } 2231 | } 2232 | } 2233 | 2234 | style "xfwm-tabwin-button" { 2235 | 2236 | font_name = "bold" 2237 | bg[SELECTED] = @selected_bg_color 2238 | } 2239 | 2240 | # Chromium 2241 | style "chrome_menu_item" { 2242 | 2243 | bg[SELECTED] = @selected_bg_color 2244 | 2245 | } 2246 | 2247 | # Text Style 2248 | style "text" = "default" { 2249 | engine "murrine" { textstyle = 0 } 2250 | } 2251 | 2252 | style "menu_text" = "menu_item" { 2253 | engine "murrine" { textstyle = 0 } 2254 | } 2255 | 2256 | 2257 | style "null" { 2258 | 2259 | engine "pixmap" { 2260 | 2261 | image { 2262 | function = BOX 2263 | file = "assets/null.png" 2264 | stretch = TRUE 2265 | } 2266 | } 2267 | } 2268 | 2269 | 2270 | class "GtkWidget" style "default" 2271 | class "GtkScrollbar" style "scrollbar" 2272 | class "GtkButton" style "button" 2273 | class "GtkEntry" style "entry" 2274 | class "GtkOldEditable" style "entry" 2275 | class "GtkSpinButton" style "spinbutton" 2276 | class "GtkNotebook" style "notebook" 2277 | class "GtkRange" style "range" 2278 | class "GtkProgressBar" style "progressbar" 2279 | class "GtkSeparatorMenuItem" style "separator_menu_item" 2280 | class "GtkScrolledWindow" style "scrolled_window" 2281 | class "GtkFrame" style "frame" 2282 | class "GtkTreeView" style "treeview" 2283 | class "GtkToolbar" style "toolbar" 2284 | class "*HandleBox" style "toolbar" 2285 | 2286 | widget_class "**" style "menu" 2287 | widget_class "**" style "menu_framed_box" 2288 | widget_class "**" style "menu_item" 2289 | widget_class "**" style "checkbutton" 2290 | widget_class "*" style "combobox" 2291 | widget_class "**" style "combobox_button" 2292 | widget_class "**" style "combobox_separator" 2293 | widget_class "***" style "treeview_header" 2294 | widget_class "**" style "inline_toolbar" 2295 | widget_class "**" style "combobox_entry" 2296 | widget_class "**" style "combobox_entry_button" 2297 | widget_class "***" style "notebook_viewport" 2298 | widget_class "*HandleBox" style "toolbar" 2299 | 2300 | # Entries in notebooks draw with notebook's base color, but not if there's 2301 | # something else in the middle that draws gray again 2302 | widget_class "**" style "notebook_entry" 2303 | widget_class "***" style "entry" 2304 | 2305 | widget_class "***" style "notebook_combobox_entry" 2306 | widget_class "****" style "combobox_entry" 2307 | 2308 | # We also need to avoid changing fg color for the inactive notebook tab labels 2309 | widget_class "*." style "notebook_tab_label" 2310 | 2311 | # GTK tooltips 2312 | widget "gtk-tooltip*" style "tooltips" 2313 | 2314 | #Fix GVim tabs 2315 | widget_class "**" style "notebook_eventbox" 2316 | 2317 | # Xchat special cases 2318 | widget "*xchat-inputbox" style "entry" 2319 | 2320 | # GIMP 2321 | # Disable gradients completely for GimpSpinScale 2322 | #class "GimpSpinScale" style "gimp_spin_scale" 2323 | 2324 | # Remove borders from "Wilbert frame" in Gimp 2325 | widget_class "**" style "gimp_toolbox_frame" 2326 | 2327 | # Chrome/Chromium 2328 | widget_class "*Chrom*Button*" style "button" 2329 | widget_class "***" style "chrome_menu_item" 2330 | 2331 | # Eclipse/SWT 2332 | widget "gtk-tooltips*" style "eclipse-tooltips" 2333 | widget "*swt-toolbar-flat" style "null" 2334 | 2335 | # Openoffice, Libreoffice 2336 | class "GtkWindow" style "toplevel_hack" 2337 | widget "*openoffice-toplevel*" style "ooo_stepper_hack" 2338 | 2339 | # Xfce 2340 | widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" 2341 | widget "xfwm4-tabwin*" style "xfwm-tabwin" 2342 | widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" 2343 | 2344 | # Fixes ugly text shadows for insensitive text 2345 | widget_class "*" style "text" 2346 | widget_class "**" style "menu_text" 2347 | widget_class "**" style "text" 2348 | widget_class "**" style "text" 2349 | widget_class "**" style "text" 2350 | -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/button-active.png -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/button-hover.png -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/button-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/button.png -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/entry-active-toolbar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/entry-active-toolbar-dark.png -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/entry-active-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/entry-active-toolbar.png -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/entry-disabled-toolbar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/entry-disabled-toolbar-dark.png -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/entry-disabled-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/entry-disabled-toolbar.png -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/entry-toolbar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/entry-toolbar-dark.png -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/entry-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/entry-toolbar.png -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/menubar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/menubar-dark.png -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/menubar-dark.png1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/menubar-dark.png1 -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc: -------------------------------------------------------------------------------- 1 | style "menubar" { 2 | 3 | bg[NORMAL] = "#2f343f" 4 | fg[NORMAL] = "#afb8c5" 5 | fg[PRELIGHT] = "#afb8c5" 6 | fg[ACTIVE] = "#afb8c5" 7 | fg[SELECTED] = @selected_fg_color 8 | fg[INSENSITIVE] = shade(0.7, "#afb8c5") 9 | 10 | xthickness = 0 11 | ythickness = 0 12 | 13 | engine "pixmap" { 14 | 15 | image { 16 | function = BOX 17 | file = "menubar-toolbar/menubar-dark.png" 18 | stretch = TRUE 19 | border = { 1, 1, 1, 1 } 20 | } 21 | } 22 | } 23 | 24 | style "menubar-borderless" { 25 | 26 | bg[NORMAL] = "#2f343f" 27 | fg[NORMAL] = "#afb8c5" 28 | fg[SELECTED] = @selected_fg_color 29 | fg[INSENSITIVE] = shade(0.7, "#afb8c5") 30 | 31 | xthickness = 0 32 | ythickness = 0 33 | 34 | engine "pixmap" { 35 | 36 | image { 37 | function = BOX 38 | file = "assets/null.png" 39 | stretch = TRUE 40 | border = { 1, 1, 1, 1 } 41 | } 42 | } 43 | } 44 | 45 | style "menubar_item" { 46 | 47 | xthickness = 2 48 | ythickness = 4 49 | 50 | fg[PRELIGHT] = @selected_fg_color 51 | 52 | engine "pixmap" { 53 | 54 | image { 55 | function = BOX 56 | state = PRELIGHT 57 | file = "menubar-toolbar/menubar_button-dark.png" 58 | border = { 2, 2, 2, 2 } 59 | stretch = TRUE 60 | } 61 | } 62 | } 63 | 64 | # Text Style Menubar 65 | style "menubar-text" { 66 | 67 | engine "murrine" { 68 | text_shade = 0.0 69 | textstyle = 0 70 | } 71 | } 72 | 73 | 74 | style "toolbar_text" { 75 | fg[NORMAL] = "#afb8c5" 76 | fg[PRELIGHT] = "#afb8c5" 77 | fg[INSENSITIVE] = shade(0.7, "#afb8c5") 78 | fg[ACTIVE] = "#afb8c5" 79 | 80 | text[NORMAL] = "#afb8c5" 81 | text[PRELIGHT] = "#afb8c5" 82 | text[INSENSITIVE] = shade(0.7, "#afb8c5") 83 | text[ACTIVE] = "#afb8c5" 84 | 85 | } 86 | 87 | style "toolbar_button" { 88 | 89 | xthickness = 4 90 | ythickness = 4 91 | 92 | engine "pixmap" { 93 | 94 | image { 95 | function = BOX 96 | state = NORMAL 97 | file = "menubar-toolbar/button.png" 98 | border = { 4, 4, 4, 4 } 99 | stretch = TRUE 100 | } 101 | 102 | image { 103 | function = BOX 104 | state = PRELIGHT 105 | file = "menubar-toolbar/button-hover.png" 106 | border = { 4, 4, 4, 4 } 107 | stretch = TRUE 108 | } 109 | 110 | image { 111 | function = BOX 112 | state = ACTIVE 113 | file = "menubar-toolbar/button-active.png" 114 | border = { 4, 4, 4, 4 } 115 | stretch = TRUE 116 | } 117 | 118 | image { 119 | function = BOX 120 | state = INSENSITIVE 121 | file = "menubar-toolbar/button-insensitive.png" 122 | border = { 4, 4, 4, 4 } 123 | stretch = TRUE 124 | } 125 | } 126 | } 127 | 128 | style "toolbar_entry" { 129 | 130 | base[NORMAL] = "#404552" 131 | base[ACTIVE] = "#404552" 132 | base[INSENSITIVE] = "#39404d" 133 | 134 | text[NORMAL] = "#afb8c5" 135 | 136 | engine "pixmap" { 137 | 138 | image { 139 | function = SHADOW 140 | state = NORMAL 141 | detail = "entry" 142 | file = "menubar-toolbar/entry-toolbar-dark.png" 143 | border = {6, 6, 6, 6} 144 | stretch = TRUE 145 | } 146 | 147 | image { 148 | function = SHADOW 149 | state = ACTIVE 150 | detail = "entry" 151 | file = "menubar-toolbar/entry-active-toolbar-dark.png" 152 | border = {6, 6, 6, 6} 153 | stretch = TRUE 154 | } 155 | 156 | image { 157 | function = SHADOW 158 | state = INSENSITIVE 159 | detail = "entry" 160 | file = "menubar-toolbar/entry-disabled-toolbar-dark.png" 161 | border = {6, 6, 6, 6} 162 | stretch = TRUE 163 | } 164 | 165 | image { 166 | function = FLAT_BOX 167 | state = ACTIVE 168 | detail = "entry_bg" 169 | file = "assets/null.png" 170 | } 171 | 172 | image { 173 | function = FLAT_BOX 174 | state = INSENSITIVE 175 | detail = "entry_bg" 176 | file = "assets/null.png" 177 | } 178 | 179 | image { 180 | function = FLAT_BOX 181 | detail = "entry_bg" 182 | file = "assets/null.png" 183 | } 184 | } 185 | } 186 | 187 | #Chromium 188 | style "chrome-gtk-frame" { 189 | 190 | ChromeGtkFrame::frame-color = "#2f343f" 191 | ChromeGtkFrame::inactive-frame-color = "#2f343f" 192 | 193 | ChromeGtkFrame::frame-gradient-size = 0 194 | ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) 195 | 196 | ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) 197 | ChromeGtkFrame::incognito-inactive-frame-color = @bg_color 198 | 199 | ChromeGtkFrame::incognito-frame-gradient-color = @bg_color 200 | 201 | ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) 202 | ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) 203 | ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color 204 | 205 | } 206 | 207 | widget_class "**" style "menubar" 208 | widget_class "*.*" style "menubar_item" 209 | 210 | widget_class "*ThunarWindow*" style "menubar" 211 | 212 | class "ChromeGtkFrame" style "chrome-gtk-frame" 213 | 214 | widget_class "***" style "menubar-text" 215 | 216 | # Whitelist for dark toolbars 217 | widget_class "*ThunarWindow*" style "menubar-borderless" 218 | widget_class "*ThunarWindow**" style "toolbar_entry" 219 | widget_class "*ThunarWindow**" style "toolbar_button" 220 | widget_class "*ThunarWindow**" style "toolbar_text" 221 | widget_class "*ThunarWindow***" style "menubar-text" 222 | 223 | -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/menubar-toolbar.rc: -------------------------------------------------------------------------------- 1 | style "menubar" { 2 | 3 | bg[NORMAL] = "#e7e8eb" 4 | fg[NORMAL] = "#70788d" 5 | fg[PRELIGHT] = "#70788d" 6 | fg[ACTIVE] = "#70788d" 7 | fg[SELECTED] = @selected_fg_color 8 | fg[INSENSITIVE] = shade(1.3, "#70788d") 9 | 10 | xthickness = 0 11 | ythickness = 0 12 | 13 | engine "pixmap" { 14 | 15 | image { 16 | function = BOX 17 | file = "menubar-toolbar/menubar.png" 18 | stretch = TRUE 19 | border = { 1, 1, 1, 1 } 20 | } 21 | } 22 | } 23 | 24 | style "menubar-borderless" { 25 | 26 | bg[NORMAL] = "#e7e8eb" 27 | fg[NORMAL] = "#70788d" 28 | fg[SELECTED] = @fg_color 29 | fg[INSENSITIVE] = shade(1.3, "#70788d") 30 | 31 | xthickness = 0 32 | ythickness = 0 33 | 34 | engine "pixmap" { 35 | 36 | image { 37 | function = BOX 38 | file = "assets/null.png" 39 | stretch = TRUE 40 | border = { 1, 1, 1, 1 } 41 | } 42 | } 43 | } 44 | 45 | style "menubar_item" { 46 | 47 | xthickness = 2 48 | ythickness = 4 49 | 50 | fg[PRELIGHT] = @selected_fg_color 51 | 52 | engine "pixmap" { 53 | 54 | image { 55 | function = BOX 56 | state = PRELIGHT 57 | file = "menubar-toolbar/menubar_button.png" 58 | border = { 2, 2, 2, 2 } 59 | stretch = TRUE 60 | } 61 | } 62 | } 63 | 64 | # Text Style Menubar 65 | style "menubar-text" { 66 | 67 | engine "murrine" { 68 | text_shade = 0.0 69 | textstyle = 0 70 | } 71 | } 72 | 73 | style "toolbar_entry" { 74 | 75 | text[NORMAL] = "#70788d" 76 | 77 | engine "pixmap" { 78 | 79 | image { 80 | function = SHADOW 81 | state = NORMAL 82 | detail = "entry" 83 | file = "menubar-toolbar/entry-toolbar.png" 84 | border = {6, 6, 6, 6} 85 | stretch = TRUE 86 | } 87 | 88 | image { 89 | function = SHADOW 90 | state = ACTIVE 91 | detail = "entry" 92 | file = "menubar-toolbar/entry-active-toolbar.png" 93 | border = {6, 6, 6, 6} 94 | stretch = TRUE 95 | } 96 | 97 | image { 98 | function = SHADOW 99 | state = INSENSITIVE 100 | detail = "entry" 101 | file = "menubar-toolbar/entry-disabled-toolbar.png" 102 | border = {6, 6, 6, 6} 103 | stretch = TRUE 104 | } 105 | 106 | image { 107 | function = FLAT_BOX 108 | state = ACTIVE 109 | detail = "entry_bg" 110 | file = "assets/null.png" 111 | } 112 | 113 | image { 114 | function = FLAT_BOX 115 | state = INSENSITIVE 116 | detail = "entry_bg" 117 | file = "assets/null.png" 118 | } 119 | 120 | image { 121 | function = FLAT_BOX 122 | detail = "entry_bg" 123 | file = "assets/null.png" 124 | } 125 | } 126 | } 127 | 128 | #Chromium 129 | style "chrome-gtk-frame" { 130 | 131 | ChromeGtkFrame::frame-color = "#e7e8eb" 132 | ChromeGtkFrame::inactive-frame-color = "#e7e8eb" 133 | 134 | ChromeGtkFrame::frame-gradient-size = 0 135 | ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) 136 | 137 | ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) 138 | ChromeGtkFrame::incognito-inactive-frame-color = @bg_color 139 | 140 | ChromeGtkFrame::incognito-frame-gradient-color = @bg_color 141 | 142 | ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) 143 | ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) 144 | ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color 145 | 146 | } 147 | 148 | widget_class "**" style "menubar" 149 | widget_class "*.*" style "menubar_item" 150 | 151 | widget_class "*ThunarWindow*" style "menubar" 152 | widget_class "*CajaNavigationWindow*" style "menubar" 153 | 154 | class "ChromeGtkFrame" style "chrome-gtk-frame" 155 | 156 | widget_class "***" style "menubar-text" 157 | 158 | # Whitelist for dark toolbars 159 | widget_class "*ThunarWindow*" style "menubar-borderless" 160 | widget_class "*CajaNavigationWindow*" style "menubar-borderless" 161 | widget_class "*ThunarWindow**" style "toolbar_entry" 162 | widget_class "*CajaNavigationWindow**" style "toolbar_entry" 163 | -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/menubar_button-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/menubar_button-dark.png -------------------------------------------------------------------------------- /gtk-2.0/menubar-toolbar/menubar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avivace/monokai-gtk/ad28fec6fb52b375fdf8936ec8ca5698575cf641/gtk-2.0/menubar-toolbar/menubar_button.png -------------------------------------------------------------------------------- /gtk-2.0/panel.rc: -------------------------------------------------------------------------------- 1 | style "theme-panel" { 2 | 3 | xthickness = 2 4 | ythickness = 0 5 | 6 | bg[NORMAL] = "#2B2E37" 7 | bg[ACTIVE] = @selected_bg_color 8 | bg[PRELIGHT] = "#3f4453" 9 | bg[SELECTED] = @selected_bg_color 10 | 11 | fg[NORMAL] = "#BAC3CF" 12 | fg[PRELIGHT] = @selected_fg_color 13 | fg[ACTIVE] = @selected_fg_color 14 | fg[SELECTED] = @selected_fg_color 15 | 16 | text[NORMAL] = "#BAC3CF" 17 | text[PRELIGHT] = "#BAC3CF" 18 | text[ACTIVE] = "#BAC3CF" 19 | text[SELECTED] = "#BAC3CF" 20 | 21 | engine "murrine" { 22 | reliefstyle = 0 23 | glazestyle = 0 24 | glow_shade = 1.0 25 | highlight_shade = 1.0 26 | roundness = 0 27 | gradient_shades = {1.0,1.0,1.0,1.0} 28 | textstyle = 0 29 | contrast = 0.0 30 | } 31 | } 32 | 33 | style "theme-panel-progressbar" { 34 | bg[ACTIVE] = "#1D1F26" 35 | } 36 | 37 | style "panelbar" { 38 | 39 | fg[NORMAL] = "#edf5fb" 40 | fg[ACTIVE] = "#edf5fb" 41 | fg[PRELIGHT] = "#edf5fb" 42 | fg[SELECTED] = @selected_fg_color 43 | 44 | bg[SELECTED] = @selected_bg_color 45 | 46 | engine "murrine" {} 47 | } 48 | 49 | style "panelbuttons" { 50 | 51 | xthickness = 4 52 | ythickness = 0 53 | 54 | engine "murrine" { 55 | textstyle = 0 56 | } 57 | } 58 | 59 | style "theme-panel-text" { 60 | 61 | fg[NORMAL] = "#edf5fb" 62 | fg[PRELIGHT] = @selected_fg_color 63 | fg[ACTIVE] = "#edf5fb" 64 | 65 | text[NORMAL] = "#edf5fb" 66 | text[PRELIGHT] = @selected_fg_color 67 | text[ACTIVE] = "#edf5fb" 68 | 69 | engine "murrine" { 70 | textstyle = 0 71 | text_shade = 0.2 72 | } 73 | } 74 | 75 | style "panel-entry" { 76 | 77 | fg[NORMAL] = @text_color 78 | fg[PRELIGHT] = @text_color 79 | fg[ACTIVE] = @text_color 80 | fg[SELECTED] = @text_color 81 | fg[INSENSITIVE] = @text_color 82 | 83 | text[NORMAL] = @text_color 84 | text[PRELIGHT] = @text_color 85 | text[ACTIVE] = @text_color 86 | text[SELECTED] = @text_color 87 | text[INSENSITIVE] = @text_color 88 | 89 | } 90 | 91 | style "theme-main-menu-text" = "theme-panel-text" { 92 | fg[PRELIGHT] = @selected_fg_color 93 | text[PRELIGHT] = @selected_fg_color 94 | } 95 | 96 | style "workspace-switcher" = "theme-panel" { 97 | bg[SELECTED] = @selected_bg_color 98 | } 99 | 100 | style "indicator" = "theme-panel" { 101 | xthickness = 0 102 | ythickness = 0 103 | } 104 | 105 | widget "*tasklist*" style "panelbuttons" 106 | widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" 107 | widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" 108 | widget_class "*PanelToplevel*Button" style "panelbuttons" 109 | widget_class "*Panel*GtkToggleButton" style "panelbuttons" 110 | widget_class "*Xfce*Panel*Button*" style "panelbuttons" 111 | widget_class "*" style "panelbuttons" 112 | widget_class "**" style "panelbuttons" 113 | widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" 114 | widget "*dict*Applet*" style "panelbuttons" 115 | widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" 116 | widget_class "*Tasklist*" style:highest "panelbuttons" 117 | 118 | class "*Panel*MenuBar*" style "panelbar" 119 | widget_class "*Panel*MenuBar*" style "panelbar" 120 | widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" 121 | 122 | widget "*PanelWidget*" style "theme-panel" 123 | widget "*PanelApplet*" style "theme-panel" 124 | widget "*fast-user-switch*" style "theme-panel" 125 | widget "*CPUFreq*Applet*" style "theme-panel" 126 | class "PanelApp*" style "theme-panel" 127 | class "PanelToplevel*" style "theme-panel" 128 | widget_class "*PanelToplevel*" style "theme-panel" 129 | widget_class "*notif*" style "theme-panel" 130 | widget_class "*Notif*" style "theme-panel" 131 | widget_class "*Tray*" style "theme-panel" 132 | widget_class "*tray*" style "theme-panel" 133 | widget_class "*computertemp*" style "theme-panel" 134 | widget_class "*Applet*Tomboy*" style "theme-panel" 135 | widget_class "*Applet*Netstatus*" style "theme-panel" 136 | 137 | # Fixes for tooltip text in some apps. 138 | widget_class "*Notif*Beagle*" style "theme-panel" 139 | widget_class "*Notif*Brasero*" style "theme-panel" 140 | 141 | # XFCE panel theming. 142 | widget "*Xfce*Panel*" style "theme-panel" 143 | class "*Xfce*Panel*" style "theme-panel" 144 | widget "*Xfce*Panel*GtkProgressBar" style "theme-panel-progressbar" 145 | widget "*WnckPager*" style "workspace-switcher" 146 | widget "*TopMenu*" style "theme-panel" 147 | widget "*XfceTasklist*" style "panelbuttons" 148 | 149 | # Fix gtk-entries in the panel 150 | widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin 151 | 152 | # Make sure panel text color doesn't change 153 | widget_class "*Panel*MenuBar*" style "theme-main-menu-text" 154 | widget_class "*Panel**" style "theme-main-menu-text" 155 | widget "*.clock-applet-button.*" style "theme-panel-text" 156 | widget "*PanelApplet*" style "theme-panel-text" 157 | 158 | # Override general panel-style with specific plugin-styles 159 | widget "*indicator-applet*" style "indicator" 160 | widget "*indicator-button*" style "indicator" 161 | -------------------------------------------------------------------------------- /gtk-2.0/xfce-notify.rc: -------------------------------------------------------------------------------- 1 | gtk-color-scheme = "selected_bg_color:#5294E2\nselected_fg_color:#ffffff" 2 | 3 | style "notify-window" { 4 | XfceNotifyWindow::summary-bold = 1 5 | XfceNotifyWindow::border-color = "#17191F" 6 | XfceNotifyWindow::border-color-hover = "#17191F" 7 | XfceNotifyWindow::border-radius = 3.0 8 | XfceNotifyWindow::border-width = 1.0 9 | XfceNotifyWindow::border-width-hover = 1.0 10 | 11 | bg[NORMAL] = "#292C36" 12 | } 13 | 14 | style "notify-button" { 15 | bg[NORMAL] = "#434652" 16 | bg[PRELIGHT] = "#5C6070" 17 | bg[ACTIVE] = @selected_bg_color 18 | 19 | fg[NORMAL] = "#BAC3CF" 20 | fg[PRELIGHT] = "#BAC3CF" 21 | fg[ACTIVE] = @selected_fg_color 22 | 23 | engine "murrine" { 24 | gradient_shades = { 1.0, 1.0, 1.0, 1.0 } 25 | border_shades = { 1.0, 1.0 } 26 | roundness = 2 27 | textstyle = 0 28 | } 29 | } 30 | 31 | style "notify-text" { 32 | GtkWidget::link-color = @selected_bg_color 33 | 34 | fg[NORMAL] = "#BAC3CF" 35 | fg[PRELIGHT] = "#BAC3CF" 36 | fg[ACTIVE] = "#BAC3CF" 37 | 38 | engine "murrine" { 39 | textstyle = 0 40 | } 41 | } 42 | 43 | style "notify-summary" { 44 | font_name = "Bold" 45 | } 46 | 47 | style "notify-progressbar" { 48 | GtkProgressBar::min-horizontal-bar-height = 4 49 | 50 | xthickness = 0 51 | ythickness = 0 52 | 53 | fg[PRELIGHT] = "#000000" 54 | bg[NORMAL] = @selected_bg_color 55 | bg[ACTIVE] = "#1D1F26" 56 | bg[SELECTED] = @selected_bg_color 57 | 58 | engine "murrine" { 59 | gradient_shades = { 1.0, 1.0, 1.0, 1.0 } 60 | border_shades = { 1.0, 1.0 } 61 | trough_shades = { 1.0, 1.0 } 62 | trough_border_shades = { 1.0, 1.0 } 63 | progressbarstyle = 0 64 | roundness = 2 65 | textstyle = 0 66 | } 67 | } 68 | 69 | class "XfceNotifyWindow" style "notify-window" 70 | widget "XfceNotifyWindow.*.summary" style "notify-summary" 71 | widget_class "XfceNotifyWindow.*" style "notify-button" 72 | widget_class "XfceNotifyWindow.*." style "notify-text" 73 | widget_class "XfceNotifyWindow.*." style "notify-progressbar" 74 | widget_class "XfceNotifyWindow.*." style "notify-progressbar" 75 | --------------------------------------------------------------------------------