manojbaishya

GIMP v2.10 HiDPI Dark Theme

May 27th, 2022 (edited)
564
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 56.72 KB | None | 0 0
  1. ############################################################################
  2. #
  3. # Dark GIMP Theme
  4. #
  5. # Version 0.2
  6. #
  7. # Copyright 2015-2016, Benoit Touchette
  8. #
  9. # This program is free software: you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; either version 3 of the License, or
  12. # (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU General Public License
  20. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  21. #
  22. ############################################################################
  23. #
  24. # Special thanks to all the theme creators, specifically:
  25. #
  26. # horst3180 for his excellent Ceti-2 theme.
  27. # Nuclear Napalm, android272, Medhi Abhollahi for their GIMP themes.
  28. #
  29. # Y'all inspired me to create these themes for GIMP.
  30. #
  31. ############################################################################
  32. #
  33. # arrows-(down, left, right, up)*.png from Ceti-2 theme, horst3180
  34. # frame-gap-*.png from Ceti-2 theme, horst3180
  35. # gap information from new CS6 II theme, Medhi Abhollahi
  36. #
  37. ############################################################################
  38. #
  39. # KDE:
  40. #
  41. # * For this theme to work under KDE users will need to disable either
  42. # "Apply colors to non-QT applications" or "Apply KDE Colours to Non-KDE
  43. # apps" depending on the version.
  44. #
  45. # Miscellaneous:
  46. #
  47. # * Fonts can be overridden by uncommenting the two font lines below
  48. #
  49. # * Uncomment the gtk-primary-button-warps-slider line to enable warping
  50. # scroll bars.
  51. #
  52. ############################################################################
  53.  
  54. gtk-menu-images = 1
  55. gtk-button-images = 0
  56. gtk-auto-mnemonics = 1
  57. #gtk-primary-button-warps-slider = 1
  58. gtk-toolbar-style = GTK_TOOLBAR_ICONS
  59. gtk-application-prefer-dark-theme = true
  60.  
  61. gtk-font-name = "Roboto 11"
  62.  
  63. # KDE hack to match gtk/gnome defaults
  64. gtk-button-images = 0
  65.  
  66. style "gimp-dark-default-style"
  67. {
  68. font_name = "Roboto 11"
  69.  
  70. color["clr1"] = "#DDDDDD"
  71. color["clr2"] = "#FFFFFF"
  72. color["clr3"] = "#C1C1C1"
  73. color["clr4"] = "#383838"
  74. color["clr5"] = "#555555"
  75. color["clr6"] = "#828282"
  76. color["clr7"] = "#3B3B3B"
  77. color["clr8"] = "#383838"
  78. color["clr9"] = "#454545"
  79. color["clrA"] = "#303030"
  80. color["link_color"] = "#6fa4dc"
  81. color["visited_link_color"] = "#1a74d3"
  82.  
  83. fg[NORMAL] = @clr1
  84. fg[PRELIGHT] = @clr2
  85. fg[ACTIVE] = @clr3
  86. fg[SELECTED] = @clr1
  87. fg[INSENSITIVE] = @clr3
  88.  
  89. bg[NORMAL] = @clr9
  90. bg[PRELIGHT] = @clr7
  91. bg[ACTIVE] = @clr4
  92. bg[SELECTED] = @clr5
  93. bg[INSENSITIVE] = @clr5
  94.  
  95. base[NORMAL] = @clrA
  96. base[PRELIGHT] = @clr7
  97. base[ACTIVE] = @clr7
  98. base[SELECTED] = @clr1
  99. base[INSENSITIVE] = @clr8
  100.  
  101. text[NORMAL] = @clr1
  102. text[PRELIGHT] = @clr1
  103. text[ACTIVE] = @clr1
  104. text[SELECTED] = @clr7
  105. text[INSENSITIVE] = @clr9
  106.  
  107. GtkOptionMenu::indicator-size = { 5, 11 }
  108. GtkOptionMenu::indicator-spacing = { 4, 3, 1, 1 }
  109.  
  110. GtkScrollbar::has_secondary_backward_stepper = 0
  111. GtkScrollbar::has_secondary_forward_stepper = 0
  112.  
  113. GtkPaned::handle-size = 2
  114. GimpDockWindow::default-height = 240
  115. GimpDock::font-scale = 1.0000
  116. GimpMenuDock::minimal-width = 200
  117. GimpDockWindow::menu-preview-size = large-toolbar
  118. GimpToolPalette::tool-icon-size = large-toolbar
  119. GimpToolPalette::button-relief = none
  120. GimpDockbook::tab-border = 0
  121. GimpDockbook::tab-icon-size = large-toolbar
  122. GimpColorNotebook::tab-border = 0
  123. GimpColorNotebook::tab-icon-size = large-toolbar
  124. GimpDeviceEditor::handle-size = 12
  125. GimpDockable::content-border = 1
  126. GimpEditor::content-spacing = 1
  127. GimpEditor::button-spacing = 1
  128. GimpEditor::button-icon-size = large-toolbar
  129. GimpDataEditor::minimal-height = 64
  130. GimpFrame::label-spacing = 2
  131. GtkDialog::content-area-border = 0
  132. GtkDialog::button-spacing = 6
  133. GtkDialog::action-area-border = 12
  134. GimpUnitComboBox::appears-as-list = 0
  135. GtkComboBoxEntry::appears-as-list = 0
  136. GtkComboBoxText::appears-as-list = 0
  137. GtkComboBox::appears-as-list = 0
  138.  
  139. GnomeHRef ::link_color = @link_color
  140. GtkHTML ::link-color = @link_color
  141. GtkIMHtmlr::hyperlink-color = @link_color
  142. GtkIMHtml ::hyperlink-color = @link_color
  143. GtkWidget ::link-color = @link_color
  144. GtkWidget ::visited-link-color = @visited_link_color
  145.  
  146. #
  147. # To adjust to default button spacing:
  148. #
  149. # Set focus-padding to 2
  150. # Set focus-line to 1
  151. #
  152.  
  153. GtkButton::focus-line_width = 1
  154. GtkButton::focus-padding = 0
  155.  
  156. GtkRange::trough-border = 0
  157. GtkRange::slider-width = 15
  158. GtkRange::stepper-size = 0
  159.  
  160. GtkScale::slider-length = 14
  161. GtkScale::slider-width = 14
  162. GtkScale::trough-border = 0
  163. GtkScale::trough-side-details = 1
  164.  
  165. GtkVScale::slider_length = 14
  166. GtkVScale::slider_width = 14
  167.  
  168. GtkHScale::slider_length = 14
  169. GtkHScale::slider_width = 14
  170.  
  171. GtkScrollbar::trough-border = 0
  172. GtkScrollbar::activate-slider = 1
  173. GtkScrollbar::has-backward-stepper = 0
  174. GtkScrollbar::has-forward-stepper = 0
  175. GtkScrollbar::min-slider-length = 32
  176. GtkScrolledWindow::scrollbar-spacing = 0
  177. GtkScrolledWindow::scrollbars-within-bevel = 0
  178.  
  179. GtkTreeView::expander-size = 13
  180. GtkExpander::expander-size = 13
  181.  
  182. GtkStatusbar::shadow_type = GTK_SHADOW_NONE
  183. GtkSpinButton::shadow_type = GTK_SHADOW_NONE
  184. GtkMenuBar::shadow-type = GTK_SHADOW_NONE
  185. GtkToolbar::shadow-type = GTK_SHADOW_NONE
  186. GtkList::shadow_type = GTK_SHADOW_NONE
  187. GtkCList::shadow_type = GTK_SHADOW_NONE
  188. GtkComboBox::shadow_type = GTK_SHADOW_NONE
  189. GtkComboBoxEntry::shadow_type = GTK_SHADOW_NONE
  190. GtkComboBoxText::shadow_type = GTK_SHADOW_NONE
  191. GtkVScale::shadow_type = GTK_SHADOW_NONE
  192. GtkHScale::shadow_type = GTK_SHADOW_NONE
  193. GtkMenuItem::horizontal-padding = 4
  194.  
  195. GtkWidget::tooltip-radius = 2
  196. GtkWidget::tooltip-alpha = 235
  197. GtkWidget::new-tooltip-style = 1
  198.  
  199. GtkWindow::resize-grip-height = 0
  200. GtkWindow::resize-grip-width = 0
  201.  
  202. engine "pixmap"
  203. {
  204. image
  205. {
  206. function = EXPANDER
  207. expander_style = COLLAPSED
  208. file = "ui/plus.png"
  209. }
  210.  
  211. image
  212. {
  213. function = EXPANDER
  214. expander_style = EXPANDED
  215. file = "ui/minus.png"
  216. }
  217.  
  218. image
  219. {
  220. function = EXPANDER
  221. expander_style = SEMI_EXPANDED
  222. file = "ui/minus.png"
  223. }
  224.  
  225. image
  226. {
  227. function = EXPANDER
  228. expander_style = SEMI_COLLAPSED
  229. file = "ui/plus.png"
  230. }
  231.  
  232. image
  233. {
  234. function = SHADOW_GAP
  235. file = "ui/shadow-null.png"
  236. border = { 4, 4, 4, 4 }
  237. stretch = TRUE
  238. }
  239.  
  240. image
  241. {
  242. function = RESIZE_GRIP
  243. state = NORMAL
  244. detail = "statusbar"
  245. overlay_file = "ui/null.png"
  246. overlay_border = { 0,0,0,0 }
  247. overlay_stretch = FALSE
  248. }
  249.  
  250. image
  251. {
  252. function = HLINE
  253. recolorable = TRUE
  254. file = "ui/gimp-line-h.png"
  255. border = { 0, 0, 1, 1 }
  256. stretch = TRUE
  257. }
  258.  
  259. image
  260. {
  261. function = VLINE
  262. recolorable = TRUE
  263. file = "ui/gimp-line-v.png"
  264. border = { 1, 0, 1, 1 }
  265. stretch = TRUE
  266. }
  267.  
  268. image
  269. {
  270. function = ARROW
  271. recolorable = TRUE
  272. overlay_file = "ui/gimp-arrow-up.png"
  273. overlay_border = { 0, 0, 0, 0 }
  274. overlay_stretch = FALSE
  275. arrow_direction = UP
  276. }
  277.  
  278. image
  279. {
  280. function = ARROW
  281. recolorable = TRUE
  282. overlay_file = "ui/gimp-arrow-down.png"
  283. overlay_border = { 0, 0, 0, 0 }
  284. overlay_stretch = FALSE
  285. arrow_direction = DOWN
  286. }
  287.  
  288. image
  289. {
  290. function = ARROW
  291. recolorable = TRUE
  292. overlay_file = "ui/gimp-arrow-left.png"
  293. overlay_border = { 0, 0, 0, 0 }
  294. overlay_stretch = FALSE
  295. arrow_direction = LEFT
  296. }
  297.  
  298. image
  299. {
  300. function = ARROW
  301. recolorable = TRUE
  302. overlay_file = "ui/gimp-arrow-right.png"
  303. overlay_border = { 0, 0, 0, 0 }
  304. overlay_stretch = FALSE
  305. arrow_direction = RIGHT
  306. }
  307.  
  308. image
  309. {
  310. function = HANDLE
  311. overlay_file = "ui/gimp-handle-h.png"
  312. overlay_stretch = FALSE
  313. orientation = HORIZONTAL
  314. }
  315.  
  316. image
  317. {
  318. function = HANDLE
  319. overlay_file = "ui/gimp-handle-v.png"
  320. overlay_stretch = FALSE
  321. orientation = VERTICAL
  322. }
  323. }
  324. }
  325.  
  326. class "GtkWidget" style "gimp-dark-default-style"
  327. class "GtkMenuItem" style "gimp-dark-default-style"
  328.  
  329. ###########################################################
  330.  
  331. style "gimp-dark-tool-dialog-style" = "gimp-dark-default-style"
  332. {
  333. GtkDialog::action-area-border = 6
  334. }
  335.  
  336. class "GimpToolDialog" style "gimp-dark-tool-dialog-style"
  337.  
  338. ###########################################################
  339.  
  340. style "gimp-dark-grid-view-style" = "gimp-dark-default-style"
  341. {
  342. bg[NORMAL] = { 1.0, 1.0, 1.0 }
  343. }
  344.  
  345. widget_class "*GimpContainerGridView*GtkViewport*" style "gimp-dark-grid-view-style"
  346.  
  347. ###########################################################
  348.  
  349. style "gimp-dark-dockable-style" = "gimp-dark-default-style"
  350. {
  351. GimpFrame::label-bold = 0
  352. GtkButton::focus-line_width = 1
  353. GtkButton::focus-padding = 0
  354. }
  355.  
  356. widget_class "*GimpDockable.*" style "gimp-dark-dockable-style"
  357.  
  358. ###########################################################
  359.  
  360. style "gimp-dark-display-style" = "gimp-dark-default-style"
  361. {
  362. GimpRuler::font-scale = 0.6444
  363. GimpUnitComboBox::label-scale = 1.0000
  364. GimpScaleComboBox::label-scale = 1.0000
  365. GtkComboBox::arrow-size = 8
  366. GtkButton::inner-border = { 0, 0, 0, 0 }
  367. GtkButton::focus-line-width = 0
  368. GtkButton::focus-padding = 0
  369. }
  370.  
  371. widget_class "*GimpDisplayShell.*" style "gimp-dark-display-style"
  372.  
  373. ###########################################################
  374.  
  375. style "gimp-dark-overlay-style" = "gimp-display-style"
  376. {
  377. GtkButton::focus-line_width = 1
  378. }
  379.  
  380. widget_class "*<GimpOverlayFrame>*" style "gimp-dark-overlay-style"
  381.  
  382. ###########################################################
  383.  
  384. style "gimp-dark-gtkbutton-style" = "gimp-dark-default-style"
  385. {
  386. xthickness = 3
  387. ythickness = 3
  388.  
  389. engine "pixmap"
  390. {
  391. image
  392. {
  393. function = BOX
  394. detail = "buttondefault"
  395. recolorable = TRUE
  396. file = "ui/gimp-button-default.png"
  397. border = { 8, 8, 8, 8 }
  398. stretch = TRUE
  399. }
  400.  
  401. image
  402. {
  403. function = BOX
  404. state = PRELIGHT
  405. recolorable = TRUE
  406. file = "ui/gimp-button-prelight.png"
  407. border = { 8, 8, 8, 8}
  408. stretch = TRUE
  409. }
  410.  
  411. image
  412. {
  413. function = BOX
  414. state = ACTIVE
  415. file = "ui/gimp-button-pressed.png"
  416. border = { 8, 8, 8, 8 }
  417. stretch = TRUE
  418. }
  419.  
  420. image
  421. {
  422. function = BOX
  423. state = INSENSITIVE
  424. file = "ui/gimp-button-insensitive.png"
  425. border = { 8, 8, 8, 8 }
  426. stretch = TRUE
  427. }
  428.  
  429. image
  430. {
  431. function = BOX
  432. file = "ui/gimp-button-normal.png"
  433. border = { 8, 8, 8, 8 }
  434. stretch = TRUE
  435. }
  436. }
  437. }
  438.  
  439. class "GtkButton" style "gimp-dark-gtkbutton-style"
  440.  
  441. ###########################################################
  442.  
  443. style "gimp-dark-tooltips-style" = "gimp-dark-default-style"
  444. {
  445. xthickness = 4
  446. ythickness = 4
  447.  
  448. bg[NORMAL] = "#383838"
  449. bg[SELECTED] = "#828282"
  450. fg[NORMAL] = @clr1
  451. }
  452.  
  453. widget "gtk-tooltip*" style "gimp-dark-tooltips-style"
  454.  
  455. ###########################################################
  456.  
  457. style "gimp-dark-list-header-style"
  458. {
  459. #Comment out the ythickness setting below for thicker column headers.
  460. #ythickness = 0
  461.  
  462. GtkTreeView::odd_row_color = "#1f1f1f"
  463. GtkTreeView::even_row_color = "#1f1f1f"
  464.  
  465. #
  466. # set custom header text color here
  467. #
  468.  
  469. #fg[NORMAL] = "#00F"
  470. #fg[PRELIGHT] = "#00F"
  471. #fg[SELECTED] = "#00F"
  472. #fg[INSENSITIVE] = "#00F"
  473. #fg[ACTIVE] = "#00F"
  474.  
  475. #
  476. # set custom text color here
  477. #
  478.  
  479. text[NORMAL] = "#C1C1C1"
  480. #text[PRELIGHT] = "#FF0"
  481. text[SELECTED] = "#DDDDDD"
  482. #text[INSENSITIVE] = "#FF0"
  483. #text[ACTIVE] = "#FF0"
  484.  
  485. engine "pixmap"
  486. {
  487. # This image is used to draw the headers of columns
  488. # in list views when they are not selected.
  489. image
  490. {
  491. function = BOX
  492. recolorable = TRUE
  493. state = NORMAL
  494. file = "ui/list_header.png"
  495. border = { 2, 2, 2, 2 }
  496. stretch = TRUE
  497. }
  498.  
  499. # This image is used to draw the column headers in
  500. # list views when they are clicked.
  501. image
  502. {
  503. function = BOX
  504. recolorable = TRUE
  505. state = PRELIGHT
  506. file = "ui/list_header.png"
  507. border = { 2, 2, 2, 2 }
  508. stretch = TRUE
  509. }
  510.  
  511. image
  512. {
  513. function = BOX
  514. recolorable = TRUE
  515. state = ACTIVE
  516. file = "ui/list_header-pressed.png"
  517. border = { 2, 2, 2, 2}
  518. stretch = TRUE
  519. }
  520.  
  521. image
  522. {
  523. function = BOX
  524. recolorable = TRUE
  525. state = SELECTED
  526. file = "ui/list_header.png"
  527. border = { 2, 2, 2, 2 }
  528. stretch = TRUE
  529. }
  530. }
  531. }
  532.  
  533. widget_class "*List" style "gimp-dark-list-header-style"
  534. widget_class "*GtkTree*" style "gimp-dark-list-header-style"
  535. widget_class "*GtkCList" style "gimp-dark-list-header-style"
  536.  
  537. ###########################################################
  538.  
  539. style "gimp-dark-notebook-style" = "gimp-dark-default-style"
  540. {
  541. engine "pixmap"
  542. {
  543. image
  544. {
  545. function = EXTENSION
  546. recolorable = TRUE
  547. state = ACTIVE
  548. file = "ui/ext-top.png"
  549. border = { 4, 4, 4, 4 }
  550. stretch = TRUE
  551. gap_side = BOTTOM
  552. }
  553.  
  554. image
  555. {
  556. function = EXTENSION
  557. recolorable = TRUE
  558. state = ACTIVE
  559. file = "ui/ext-bottom.png"
  560. border = { 4, 4, 4, 4 }
  561. stretch = TRUE
  562. gap_side = TOP
  563. }
  564.  
  565. image
  566. {
  567. function = EXTENSION
  568. recolorable = TRUE
  569. state = ACTIVE
  570. file = "ui/ext-right.png"
  571. border = { 4, 4, 4, 4 }
  572. stretch = TRUE
  573. gap_side = LEFT
  574. }
  575.  
  576. image
  577. {
  578. function = EXTENSION
  579. recolorable = TRUE
  580. state = ACTIVE
  581. file = "ui/ext-left.png"
  582. border = { 4, 4, 4, 4 }
  583. stretch = TRUE
  584. gap_side = RIGHT
  585. }
  586.  
  587. image
  588. {
  589. function = EXTENSION
  590. recolorable = TRUE
  591. file = "ui/extension-top.png"
  592. border = { 4, 4, 4, 4 }
  593. stretch = TRUE
  594. gap_side = BOTTOM
  595. }
  596.  
  597. image
  598. {
  599. function = EXTENSION
  600. recolorable = TRUE
  601. file = "ui/extension-bottom.png"
  602. border = { 4, 4, 4, 4 }
  603. stretch = TRUE
  604. gap_side = TOP
  605. }
  606.  
  607. image
  608. {
  609. function = EXTENSION
  610. recolorable = TRUE
  611. file = "ui/extension-left.png"
  612. border = { 4, 4, 4, 4 }
  613. stretch = TRUE
  614. gap_side = RIGHT
  615. }
  616.  
  617. image
  618. {
  619. function = EXTENSION
  620. recolorable = TRUE
  621. file = "ui/extension-right.png"
  622. border = { 4, 4, 4, 4 }
  623. stretch = TRUE
  624. gap_side = LEFT
  625. }
  626.  
  627. image
  628. {
  629. function = BOX_GAP
  630. recolorable = TRUE
  631. file = "ui/notebook.png"
  632. border = { 3, 3, 3, 3 }
  633. stretch = TRUE
  634. gap_file = "ui/gap_top.png"
  635. gap_border = { 1, 1, 1, 1 }
  636. gap_start_file = "ui/null.png"
  637. gap_end_file = "ui/null.png"
  638. gap_side = TOP
  639. }
  640.  
  641. image
  642. {
  643. function = BOX_GAP
  644. recolorable = TRUE
  645. file = "ui/notebook.png"
  646. border = { 3, 3, 3, 3 }
  647. stretch = TRUE
  648. gap_file = "ui/gap_bottom.png"
  649. gap_border = { 2, 1, 1, 1 }
  650. gap_start_file = "ui/null.png"
  651. gap_end_file = "ui/null.png"
  652. gap_side = BOTTOM
  653. }
  654.  
  655. image
  656. {
  657. function = BOX_GAP
  658. recolorable = TRUE
  659. file = "ui/notebook.png"
  660. border = { 3, 3, 3, 3 }
  661. stretch = TRUE
  662. gap_file = "ui/gap_left.png"
  663. gap_border = { 1, 1, 2, 2 }
  664. gap_start_file = "ui/null.png"
  665. gap_end_file = "ui/null.png"
  666. gap_side = LEFT
  667. }
  668.  
  669. image
  670. {
  671. function = BOX_GAP
  672. recolorable = TRUE
  673. file = "ui/notebook.png"
  674. border = { 3, 3, 3, 3 }
  675. stretch = TRUE
  676. gap_file = "ui/gap_right.png"
  677. gap_border = { 1, 1, 2, 1 }
  678. gap_start_file = "ui/null.png"
  679. gap_end_file = "ui/null.png"
  680. gap_side = RIGHT
  681. }
  682.  
  683. image
  684. {
  685. function = BOX
  686. recolorable = TRUE
  687. file = "ui/notebook.png"
  688. border = { 3, 3, 3, 3 }
  689. stretch = TRUE
  690. gap_side = TOP
  691. }
  692. }
  693. }
  694.  
  695. class "GtkNotebook" style "gimp-dark-notebook-style"
  696.  
  697. ###########################################################
  698.  
  699. style "gimp-dark-menu" = "gimp-dark-default-style"
  700. {
  701. # bg[NORMAL] affects menu detachable item
  702. bg[NORMAL] = "#484848"
  703.  
  704. fg[NORMAL] = "#CBCBCB"
  705. fg[PRELIGHT] = "#FFFFFF"
  706. fg[INSENSITIVE] = "#C1C1C1"
  707.  
  708. engine "pixmap"
  709. {
  710. image
  711. {
  712. function = BOX
  713. recolorable = TRUE
  714. detail = "menu"
  715. file = "ui/menu.png"
  716. border = { 3, 3, 3, 3 }
  717. stretch = TRUE
  718. }
  719.  
  720. image
  721. {
  722. function = HLINE
  723. file = "ui/gimp-line-h.png"
  724. border = { 0, 0, 0, 0 }
  725. stretch = TRUE
  726. }
  727. }
  728. }
  729.  
  730. class "GtkMenu" style "gimp-dark-menu"
  731. widget_class "*<GtkMenu>*" style "gimp-dark-menu"
  732.  
  733. ###########################################################
  734.  
  735. style "gimp-dark-menu-bar" = "gimp-dark-default-style"
  736. {
  737. xthickness = 4
  738. ythickness = 2
  739.  
  740. fg[NORMAL] = "#CBCBCB"
  741.  
  742. engine "pixmap"
  743. {
  744. image
  745. {
  746. function = BOX
  747. file = "ui/menubar.png"
  748. border = { 2, 2, 2, 2 }
  749. stretch = TRUE
  750. }
  751. }
  752. }
  753.  
  754. class "GtkMenuBar" style "gimp-dark-menu-bar"
  755. widget_class "*<GtkMenuBar>*" style "gimp-dark-menu-bar"
  756. widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "gimp-dark-menu-bar"
  757.  
  758. ###########################################################
  759.  
  760. style "gimp-dark-menu-item"
  761. {
  762. xthickness = 2
  763. ythickness = 4
  764.  
  765. bg[NORMAL] = "#484848"
  766.  
  767. fg[NORMAL] = "#FFF"
  768. fg[PRELIGHT] = "#FFF"
  769. fg[ACTIVE] = "#FFF"
  770. fg[SELECTED] = "#FFF"
  771. fg[INSENSITIVE] = "#C1C1C1"
  772.  
  773. engine "pixmap"
  774. {
  775. image
  776. {
  777. function = BOX
  778. state = PRELIGHT
  779. file = "ui/entry-border-fill-active.png"
  780. border = { 1, 0, 1, 0 }
  781. stretch = TRUE
  782. }
  783.  
  784. image
  785. {
  786. function = OPTION
  787. shadow = OUT
  788. recolorable = TRUE
  789. overlay_file = "ui/option1.png"
  790. overlay_stretch = FALSE
  791. }
  792.  
  793. image
  794. {
  795. function = OPTION
  796. shadow = IN
  797. recolorable = TRUE
  798. overlay_file = "ui/option2.png"
  799. overlay_stretch = FALSE
  800. }
  801.  
  802. image
  803. {
  804. function = OPTION
  805. shadow = ETCHED_IN
  806. recolorable = TRUE
  807. overlay_file = "ui/option3.png"
  808. overlay_stretch = FALSE
  809. }
  810.  
  811. image
  812. {
  813. function = CHECK
  814. shadow = OUT
  815. recolorable = TRUE
  816. overlay_file = "ui/check1.png"
  817. overlay_border = { 0, 0, 0, 0 }
  818. overlay_stretch = FALSE
  819. }
  820.  
  821. image
  822. {
  823. function = CHECK
  824. shadow = IN
  825. recolorable = TRUE
  826. overlay_file = "ui/check2.png"
  827. overlay_border = { 0, 0, 0, 0 }
  828. overlay_stretch = FALSE
  829. }
  830.  
  831. image
  832. {
  833. function = CHECK
  834. shadow = ETCHED_IN
  835. recolorable = TRUE
  836. overlay_file = "ui/check3.png"
  837. overlay_border = { 0, 0, 0, 0 }
  838. overlay_stretch = FALSE
  839. }
  840. }
  841. }
  842.  
  843. class "*GtkMenuItem*" style "gimp-dark-menu-item"
  844. widget_class "*<GtkMenuItem>*" style "gimp-dark-menu-item"
  845.  
  846. ###########################################################
  847.  
  848. style "gimp-dark-item"
  849. {
  850. xthickness = 4
  851.  
  852. bg[NORMAL] = "#484848"
  853.  
  854. fg[NORMAL] = "#FFF"
  855. fg[PRELIGHT] = "#FFF"
  856. fg[ACTIVE] = "#FFF"
  857. fg[SELECTED] = "#FFF"
  858. fg[INSENSITIVE] = "#C1C1C1"
  859.  
  860. engine "pixmap"
  861. {
  862. image
  863. {
  864. function = BOX
  865. recolorable = TRUE
  866. file = "ui/button-normal.png"
  867. border = { 4, 4, 4, 4 }
  868. stretch = TRUE
  869. }
  870.  
  871. image
  872. {
  873. function = ARROW
  874. recolorable = TRUE
  875. state = PRELIGHT
  876. overlay_file = "ui/gimp-arrow-right.png"
  877. overlay_stretch = FALSE
  878. arrow_direction = RIGHT
  879. }
  880.  
  881. image
  882. {
  883. function = ARROW
  884. state = NORMAL
  885. recolorable = TRUE
  886. overlay_file = "ui/gimp-arrow-right-dark.png"
  887. overlay_stretch = FALSE
  888. arrow_direction = RIGHT
  889. }
  890. }
  891. }
  892.  
  893. class "GtkItem" style "gimp-dark-item"
  894. widget_class "*GtkItem*" style "gimp-dark-item"
  895.  
  896. ###########################################################
  897.  
  898.  
  899. style "gimp-dark-entry" = "gimp-dark-default-style"
  900. {
  901. GtkWidget::interior_focus = 1
  902.  
  903. engine "pixmap"
  904. {
  905. image
  906. {
  907. function = FLAT_BOX
  908. detail = "entry_bg"
  909. state = NORMAL
  910. overlay_file = "ui/entry-border-fill.png"
  911. overlay_border = { 0, 0, 0, 0 }
  912. overlay_stretch = TRUE
  913. }
  914.  
  915. image
  916. {
  917. function = FLAT_BOX
  918. detail = "entry_bg"
  919. state = ACTIVE
  920. overlay_file = "ui/entry-border-fill-active.png"
  921. overlay_border = { 0, 0, 0, 0 }
  922. overlay_stretch = TRUE
  923. }
  924.  
  925. image
  926. {
  927. function = SHADOW
  928. detail = "entry"
  929. file = "ui/shadow-null.png"
  930. border = { 4, 4, 4, 4 }
  931. stretch = TRUE
  932. }
  933.  
  934. image
  935. {
  936. function = FOCUS
  937. state = NORMAL
  938. recolorable = TRUE
  939. file = "ui/shadow-in-alt.png"
  940. border = { 3, 3, 3, 3 }
  941. stretch = TRUE
  942. }
  943. }
  944. }
  945.  
  946. class "GtkEntry" style "gimp-dark-entry"
  947. class "GtkOldEditable" style "gimp-dark-entry"
  948. widget_class "*GtkTree*GtkEntry" style "gimp-dark-entry"
  949.  
  950. ###########################################################
  951.  
  952.  
  953. style "gimp-dark-spin-button" = "gimp-dark-entry"
  954. {
  955. engine "pixmap"
  956. {
  957. image
  958. {
  959. function = ARROW
  960. }
  961.  
  962. image
  963. {
  964. function = BOX
  965. state = NORMAL
  966. detail = "spinbutton_up"
  967. recolorable = TRUE
  968. file = "ui/spin.png"
  969. border = { 2, 2, 2, 2 }
  970. stretch = TRUE
  971. overlay_file = "ui/spin-up-normal.png"
  972. overlay_stretch = FALSE
  973. }
  974.  
  975. image
  976. {
  977. function = BOX
  978. state = PRELIGHT
  979. detail = "spinbutton_up"
  980. recolorable = TRUE
  981. file = "ui/spin.png"
  982. border = { 2, 2, 2, 2 }
  983. stretch = TRUE
  984. overlay_file = "ui/spin-up-normal.png"
  985. overlay_stretch = FALSE
  986. }
  987.  
  988. image
  989. {
  990. function = BOX
  991. state = ACTIVE
  992. detail = "spinbutton_up"
  993. recolorable = TRUE
  994. file = "ui/spin.png"
  995. border = { 2, 2, 2, 2 }
  996. stretch = TRUE
  997. overlay_file = "ui/spin-up-pressed.png"
  998. overlay_stretch = FALSE
  999. }
  1000.  
  1001. image
  1002. {
  1003. function = BOX
  1004. state = INSENSITIVE
  1005. detail = "spinbutton_up"
  1006. recolorable = TRUE
  1007. file = "ui/spin-insensitive.png"
  1008. border = { 2, 2, 2, 2 }
  1009. stretch = TRUE
  1010. overlay_file = "ui/spin-up-insensitive.png"
  1011. overlay_stretch = FALSE
  1012. }
  1013.  
  1014. image
  1015. {
  1016. function = BOX
  1017. state = NORMAL
  1018. detail = "spinbutton_down"
  1019. recolorable = TRUE
  1020. file = "ui/spin.png"
  1021. border = { 2, 2, 2, 2 }
  1022. stretch = TRUE
  1023. overlay_file = "ui/spin-down-normal.png"
  1024. overlay_stretch = FALSE
  1025. }
  1026.  
  1027. image
  1028. {
  1029. function = BOX
  1030. state = PRELIGHT
  1031. detail = "spinbutton_down"
  1032. recolorable = TRUE
  1033. file = "ui/spin.png"
  1034. border = { 2, 2, 2, 2 }
  1035. stretch = TRUE
  1036. overlay_file = "ui/spin-down-normal.png"
  1037. overlay_stretch = FALSE
  1038. }
  1039.  
  1040. image
  1041. {
  1042. function = BOX
  1043. state = ACTIVE
  1044. detail = "spinbutton_down"
  1045. recolorable = TRUE
  1046. file = "ui/spin.png"
  1047. border = { 2, 2, 2, 2 }
  1048. stretch = TRUE
  1049. overlay_file = "ui/spin-down-pressed.png"
  1050. overlay_stretch = FALSE
  1051. }
  1052.  
  1053. image
  1054. {
  1055. function = BOX
  1056. state = INSENSITIVE
  1057. detail = "spinbutton_down"
  1058. recolorable = TRUE
  1059. file = "ui/spin-insensitive.png"
  1060. border = { 2, 2, 2, 2 }
  1061. stretch = TRUE
  1062. overlay_file = "ui/spin-down-insensitive.png"
  1063. overlay_stretch = FALSE
  1064. }
  1065. }
  1066. }
  1067.  
  1068. class "GtkSpinButton" style "gimp-dark-spin-button"
  1069.  
  1070. ###########################################################
  1071.  
  1072. style "gimp-dark-scroll-bar"
  1073. {
  1074. GtkRange::trough_border = 0
  1075. GtkVScale::slider_length = 16
  1076. GtkVScale::slider_width = 19
  1077. GtkHScale::slider_length = 17
  1078. GtkHScale::slider_width = 19
  1079. GtkRange::slider_width = 15
  1080. GtkRange::stepper_size = 15
  1081. GtkScrollbar::min_slider_length = 30
  1082.  
  1083. engine "pixmap"
  1084. {
  1085. image
  1086. {
  1087. function = BOX
  1088. recolorable = TRUE
  1089. detail = "trough"
  1090. file = "ui/slider-v.png"
  1091. border = { 0,0,39,39}
  1092. stretch = TRUE
  1093. orientation = VERTICAL
  1094. }
  1095.  
  1096. image
  1097. {
  1098. function = BOX
  1099. recolorable = TRUE
  1100. detail = "trough"
  1101. file = "ui/slider-h.png"
  1102. border = { 39,39,0,0 }
  1103. stretch = TRUE
  1104. orientation = HORIZONTAL
  1105. }
  1106.  
  1107. image
  1108. {
  1109. function = SLIDER
  1110. recolorable = TRUE
  1111. file = "ui/bar-h.png"
  1112. border = { 2,2,2,2 }
  1113. stretch = TRUE
  1114. orientation = HORIZONTAL
  1115. }
  1116.  
  1117. image
  1118. {
  1119. function = SLIDER
  1120. recolorable = TRUE
  1121. file = "ui/bar-v.png"
  1122. border = { 2,2,2,2 }
  1123. stretch = TRUE
  1124. orientation = VERTICAL
  1125. }
  1126.  
  1127. image
  1128. {
  1129. function = BOX
  1130. recolorable = TRUE
  1131. file = "ui/null.png"
  1132. border = {0,0,0,0}
  1133. stretch = TRUE
  1134. }
  1135.  
  1136. image
  1137. {
  1138. function = ARROW
  1139. recolorable = TRUE
  1140. state = NORMAL
  1141. overlay_file = "ui/null.png"
  1142. overlay_border = {0,0,0,0}
  1143. overlay_stretch = FALSE
  1144. arrow_direction = UP
  1145. }
  1146.  
  1147. image
  1148. {
  1149. function = ARROW
  1150. recolorable = TRUE
  1151. state = NORMAL
  1152. overlay_file = "ui/null.png"
  1153. overlay_border = {0,0,0,0}
  1154. overlay_stretch = FALSE
  1155. arrow_direction = DOWN
  1156. }
  1157.  
  1158. image
  1159. {
  1160. function = ARROW
  1161. recolorable = TRUE
  1162. state = NORMAL
  1163. overlay_file = "ui/null.png"
  1164. overlay_border = {0,0,0,0}
  1165. overlay_stretch = FALSE
  1166. arrow_direction = LEFT
  1167. }
  1168.  
  1169. image
  1170. {
  1171. function = ARROW
  1172. recolorable = TRUE
  1173. state = NORMAL
  1174. overlay_file = "ui/null.png"
  1175. overlay_border = {0,0,0,0}
  1176. overlay_stretch = FALSE
  1177. arrow_direction = RIGHT
  1178. }
  1179.  
  1180. image
  1181. {
  1182. function = ARROW
  1183. recolorable = TRUE
  1184. state = PRELIGHT
  1185. overlay_file = "ui/null.png"
  1186. overlay_border = {0,0,0,0}
  1187. overlay_stretch = FALSE
  1188. arrow_direction = UP
  1189. }
  1190.  
  1191. image
  1192. {
  1193. function = ARROW
  1194. recolorable = TRUE
  1195. state = PRELIGHT
  1196. overlay_file = "ui/null.png"
  1197. overlay_border = {0,0,0,0}
  1198. overlay_stretch = FALSE
  1199. arrow_direction = DOWN
  1200. }
  1201.  
  1202. image
  1203. {
  1204. function = ARROW
  1205. recolorable = TRUE
  1206. state = PRELIGHT
  1207. overlay_file = "ui/null.png"
  1208. overlay_border = {0,0,0,0}
  1209. overlay_stretch = FALSE
  1210. arrow_direction = LEFT
  1211. }
  1212.  
  1213. image
  1214. {
  1215. function = ARROW
  1216. recolorable = TRUE
  1217. state = PRELIGHT
  1218. overlay_file = "ui/null.png"
  1219. overlay_border = {0,0,0,0}
  1220. overlay_stretch = FALSE
  1221. arrow_direction = RIGHT
  1222. }
  1223.  
  1224. image
  1225. {
  1226. function = ARROW
  1227. recolorable = TRUE
  1228. state = INSENSITIVE
  1229. overlay_file = "ui/null.png"
  1230. overlay_border = {0,0,0,0}
  1231. overlay_stretch = FALSE
  1232. arrow_direction = UP
  1233. }
  1234.  
  1235. image
  1236. {
  1237. function = ARROW
  1238. recolorable = TRUE
  1239. state = INSENSITIVE
  1240. overlay_file = "ui/null.png"
  1241. overlay_border = {0,0,0,0}
  1242. overlay_stretch = FALSE
  1243. arrow_direction = DOWN
  1244. }
  1245.  
  1246. image
  1247. {
  1248. function = ARROW
  1249. recolorable = TRUE
  1250. state = INSENSITIVE
  1251. overlay_file = "ui/null.png"
  1252. overlay_border = {0,0,0,0}
  1253. overlay_stretch = FALSE
  1254. arrow_direction = LEFT
  1255. }
  1256.  
  1257. image
  1258. {
  1259. function = ARROW
  1260. recolorable = TRUE
  1261. state = INSENSITIVE
  1262. overlay_file = "ui/null.png"
  1263. overlay_border = {0,0,0,0}
  1264. overlay_stretch = FALSE
  1265. arrow_direction = RIGHT
  1266. }
  1267.  
  1268. image
  1269. {
  1270. function = ARROW
  1271. recolorable = TRUE
  1272. shadow = IN
  1273. overlay_file = "ui/null.png"
  1274. overlay_border = {0,0,0,0}
  1275. overlay_stretch = FALSE
  1276. arrow_direction = UP
  1277. }
  1278.  
  1279. image
  1280. {
  1281. function = ARROW
  1282. recolorable = TRUE
  1283. shadow = IN
  1284. overlay_file = "ui/null.png"
  1285. overlay_border = {0,0,0,0}
  1286. overlay_stretch = FALSE
  1287. arrow_direction = DOWN
  1288. }
  1289.  
  1290. image
  1291. {
  1292. function = ARROW
  1293. recolorable = TRUE
  1294. shadow = IN
  1295. overlay_file = "ui/null.png"
  1296. overlay_border = {0,0,0,0}
  1297. overlay_stretch = FALSE
  1298. arrow_direction = LEFT
  1299. }
  1300.  
  1301. image
  1302. {
  1303. function = ARROW
  1304. recolorable = TRUE
  1305. shadow = IN
  1306. overlay_file = "ui/null.png"
  1307. overlay_border = {0,0,0,0}
  1308. overlay_stretch = FALSE
  1309. arrow_direction = RIGHT
  1310. }
  1311. }
  1312. }
  1313.  
  1314. class "GtkScrollbar" style "gimp-dark-scroll-bar"
  1315.  
  1316. ###########################################################
  1317.  
  1318. style "gimp-dark-radio-button" = "gimp-dark-default-style"
  1319. {
  1320. engine "pixmap"
  1321. {
  1322. image
  1323. {
  1324. function = BOX
  1325. state = PRELIGHT
  1326. recolorable = TRUE
  1327. file = "ui/gimp-button-prelight-white-border.png"
  1328. border = { 8, 8, 8, 8}
  1329. stretch = TRUE
  1330. }
  1331.  
  1332. image
  1333. {
  1334. function = OPTION
  1335. shadow = OUT
  1336. recolorable = TRUE
  1337. overlay_file = "ui/option1.png"
  1338. overlay_stretch = FALSE
  1339. }
  1340.  
  1341. image
  1342. {
  1343. function = OPTION
  1344. shadow = IN
  1345. recolorable = TRUE
  1346. overlay_file = "ui/option2.png"
  1347. overlay_stretch = FALSE
  1348. }
  1349.  
  1350. image
  1351. {
  1352. function = OPTION
  1353. shadow = ETCHED_IN
  1354. recolorable = TRUE
  1355. overlay_file = "ui/option3.png"
  1356. overlay_stretch = FALSE
  1357. }
  1358. }
  1359. }
  1360.  
  1361. class "GtkRadioButton" style "gimp-dark-radio-button"
  1362. class "GtkRadioMenuItem" style "gimp-dark-radio-button"
  1363. class "GtkTreeView" style "gimp-dark-radio-button"
  1364.  
  1365. ###########################################################
  1366.  
  1367. style "gimp-dark-check-button" = "gimp-dark-default-style"
  1368. {
  1369. engine "pixmap"
  1370. {
  1371. image
  1372. {
  1373. function = CHECK
  1374. shadow = OUT
  1375. recolorable = TRUE
  1376. overlay_file = "ui/check1.png"
  1377. overlay_border = { 0, 0, 0, 0 }
  1378. overlay_stretch = FALSE
  1379. }
  1380.  
  1381. image
  1382. {
  1383. function = CHECK
  1384. shadow = IN
  1385. recolorable = TRUE
  1386. overlay_file = "ui/check2.png"
  1387. overlay_border = { 0, 0, 0, 0 }
  1388. overlay_stretch = FALSE
  1389. }
  1390.  
  1391. image
  1392. {
  1393. function = CHECK
  1394. shadow = ETCHED_IN
  1395. recolorable = TRUE
  1396. overlay_file = "ui/check3.png"
  1397. overlay_border = { 0, 0, 0, 0 }
  1398. overlay_stretch = FALSE
  1399. }
  1400. }
  1401. }
  1402.  
  1403. class "GtkCheckButton" style "gimp-dark-check-button"
  1404. class "GtkCheckMenuItem" style "gimp-dark-check-button"
  1405. class "GtkTreeView" style "gimp-dark-check-button"
  1406.  
  1407. ###########################################################
  1408.  
  1409. style "gimp-dark-progress-bar" = "gimp-dark-default-style"
  1410. {
  1411. xthickness = 1
  1412. ythickness = 1
  1413.  
  1414. engine "pixmap"
  1415. {
  1416. image
  1417. {
  1418. function = BOX
  1419. recolorable = TRUE
  1420. detail = "bar"
  1421. file = "ui/progressbar.png"
  1422. border = { 2, 2, 3, 3}
  1423. stretch = TRUE
  1424. }
  1425.  
  1426. image
  1427. {
  1428. function = BOX
  1429. recolorable = TRUE
  1430. detail = "trough"
  1431. file = "ui/progressbar-trough.png"
  1432. border = { 3, 3, 4, 4}
  1433. stretch = TRUE
  1434. orientation = HORIZONTAL
  1435. }
  1436. }
  1437. }
  1438.  
  1439. class "GtkProgressBar" style "gimp-dark-progress-bar"
  1440.  
  1441. ###########################################################
  1442.  
  1443. style "gimp-dark-separator-menu-item"
  1444. {
  1445. engine "pixmap"
  1446. {
  1447. image
  1448. {
  1449. function = BOX
  1450. file = "ui/gimp-menu-line-h.png"
  1451. border = { 0, 0, 1, 0 }
  1452. stretch = TRUE
  1453. }
  1454. }
  1455. }
  1456.  
  1457. class "GtkSeparatorMenuItem" style "gimp-dark-separator-menu-item"
  1458.  
  1459. ###########################################################
  1460.  
  1461. style "gimp-dark-notebook-entry-style"
  1462. {
  1463. engine "pixmap"
  1464. {
  1465. image
  1466. {
  1467. function = SHADOW
  1468. detail = "entry"
  1469. state = NORMAL
  1470. shadow = IN
  1471. file = "ui/entry-border-notebook-null.png"
  1472. border = { 4, 4, 4, 4 }
  1473. stretch = TRUE
  1474. }
  1475.  
  1476. image
  1477. {
  1478. function = SHADOW
  1479. detail = "entry"
  1480. state = INSENSITIVE
  1481. shadow = IN
  1482. file = "ui/entry-border-disabled-notebook.png"
  1483. border = { 4, 4, 4, 4 }
  1484. stretch = TRUE
  1485. }
  1486.  
  1487. image
  1488. {
  1489. function = SHADOW
  1490. detail = "entry"
  1491. state = ACTIVE
  1492. file = "ui/entry-border-active-notebook.png"
  1493. border = { 4, 4, 4, 4 }
  1494. stretch = TRUE
  1495. }
  1496. }
  1497. }
  1498.  
  1499. widget_class "*<GtkNotebook>*<GtkEntry>" style "gimp-dark-notebook-entry-style"
  1500.  
  1501. ###########################################################
  1502.  
  1503. style "gimp-dark-notebook-combobox-entry-style"
  1504. {
  1505. engine "pixmap"
  1506. {
  1507. # LTR version
  1508. image
  1509. {
  1510. function = SHADOW
  1511. detail = "entry"
  1512. state = NORMAL
  1513. shadow = IN
  1514. file = "ui/combo-entry-border-notebook.png"
  1515. border = { 4, 4, 5, 4 }
  1516. stretch = TRUE
  1517. direction = LTR
  1518. }
  1519.  
  1520. image
  1521. {
  1522. function = SHADOW
  1523. detail = "entry"
  1524. state = INSENSITIVE
  1525. shadow = IN
  1526. file = "ui/combo-entry-border-disabled-notebook.png"
  1527. border = { 4, 4, 5, 4 }
  1528. stretch = TRUE
  1529. direction = LTR
  1530. }
  1531.  
  1532. image
  1533. {
  1534. function = SHADOW
  1535. detail = "entry"
  1536. state = ACTIVE
  1537. file = "ui/combo-entry-border-active-notebook.png"
  1538. border = { 4, 4, 5, 4 }
  1539. stretch = TRUE
  1540. direction = LTR
  1541. }
  1542.  
  1543. # RTL version
  1544. image
  1545. {
  1546. function = SHADOW
  1547. detail = "entry"
  1548. state = NORMAL
  1549. shadow = IN
  1550. file = "ui/combo-entry-border-rtl-notebook.png"
  1551. border = { 4, 4, 5, 4 }
  1552. stretch = TRUE
  1553. direction = RTL
  1554. }
  1555.  
  1556. image
  1557. {
  1558. function = SHADOW
  1559. detail = "entry"
  1560. state = INSENSITIVE
  1561. shadow = IN
  1562. file = "ui/combo-entry-border-disabled-rtl-notebook.png"
  1563. border = { 4, 4, 5, 4 }
  1564. stretch = TRUE
  1565. direction = RTL
  1566. }
  1567.  
  1568. image
  1569. {
  1570. function = SHADOW
  1571. detail = "entry"
  1572. state = ACTIVE
  1573. file = "ui/combo-entry-border-active-rtl-notebook.png"
  1574. border = { 4, 4, 5, 4 }
  1575. stretch = TRUE
  1576. direction = RTL
  1577. }
  1578. }
  1579. }
  1580.  
  1581. widget_class "*<GtkNotebook>*<GtkComboBoxEntry>*<GtkEntry>" style "gimp-dark-notebook-combobox-entry-style"
  1582.  
  1583. ###########################################################
  1584.  
  1585. style "gimp-dark-combobox-entry-button-style"
  1586. {
  1587. xthickness = 6
  1588.  
  1589. fg[ACTIVE] = "#CBCBCB"
  1590.  
  1591. engine "pixmap"
  1592. {
  1593. # LTR version
  1594. image
  1595. {
  1596. function = BOX
  1597. state = NORMAL
  1598. file = "ui/combo-entry-button.png"
  1599. border = { 4, 4, 5, 4 }
  1600. stretch = TRUE
  1601. direction = LTR
  1602. }
  1603.  
  1604. image
  1605. {
  1606. function = BOX
  1607. state = PRELIGHT
  1608. file = "ui/combo-entry-button.png"
  1609. border = { 4, 4, 5, 4 }
  1610. stretch = TRUE
  1611. direction = LTR
  1612. }
  1613.  
  1614. image
  1615. {
  1616. function = BOX
  1617. state = INSENSITIVE
  1618. file = "ui/combo-entry-button-disabled.png"
  1619. border = { 4, 4, 5, 4 }
  1620. stretch = TRUE
  1621. direction = LTR
  1622. }
  1623.  
  1624. image
  1625. {
  1626. function = BOX
  1627. state = ACTIVE
  1628. file = "ui/combo-entry-button-active.png"
  1629. border = { 4, 4, 5, 4 }
  1630. stretch = TRUE
  1631. direction = LTR
  1632. }
  1633.  
  1634. # RTL version
  1635. image
  1636. {
  1637. function = BOX
  1638. state = NORMAL
  1639. file = "ui/combo-entry-button-rtl.png"
  1640. border = { 4, 4, 5, 4 }
  1641. stretch = TRUE
  1642. direction = RTL
  1643. }
  1644.  
  1645. image
  1646. {
  1647. function = BOX
  1648. state = PRELIGHT
  1649. file = "ui/combo-entry-button-rtl.png"
  1650. border = { 4, 4, 5, 4 }
  1651. stretch = TRUE
  1652. direction = RTL
  1653. }
  1654.  
  1655. image
  1656. {
  1657. function = BOX
  1658. state = INSENSITIVE
  1659. file = "ui/combo-entry-button-disabled-rtl.png"
  1660. border = { 4, 4, 5, 4 }
  1661. stretch = TRUE
  1662. direction = RTL
  1663. }
  1664.  
  1665. image
  1666. {
  1667. function = BOX
  1668. state = ACTIVE
  1669. file = "ui/combo-entry-button-active-rtl.png"
  1670. border = { 4, 4, 5, 4 }
  1671. stretch = TRUE
  1672. direction = RTL
  1673. }
  1674. }
  1675. }
  1676.  
  1677. widget_class "*<GtkComboBoxEntry>*<GtkEntry>" style "gimp-dark-combobox-entry-button-style"
  1678. widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkComboBoxEntry>*<GtkEntry>" style "gimp-dark-combobox-entry-button-style"
  1679. widget_class "*<GtkComboBoxEntry>*<GtkButton>" style "gimp-dark-combobox-entry-button-style"
  1680.  
  1681. ###########################################################
  1682.  
  1683. style "gimp-dark-range-style"
  1684. {
  1685. engine "pixmap"
  1686. {
  1687. image
  1688. {
  1689. function = BOX
  1690. detail = "trough"
  1691. file = "ui/null.png"
  1692. border = { 4, 4, 0, 0 }
  1693. stretch = TRUE
  1694. orientation = HORIZONTAL
  1695. }
  1696.  
  1697. image
  1698. {
  1699. function = BOX
  1700. detail = "trough"
  1701. border = { 0, 0, 4, 4 }
  1702. file = "ui/null.png"
  1703. stretch = TRUE
  1704. orientation = VERTICAL
  1705. }
  1706.  
  1707. # Horizontal
  1708. image
  1709. {
  1710. function = SLIDER
  1711. state = NORMAL
  1712. file = "ui/null.png"
  1713. border = { 0, 0, 0, 0 }
  1714. stretch = TRUE
  1715. orientation = HORIZONTAL
  1716. }
  1717.  
  1718. image
  1719. {
  1720. function = SLIDER
  1721. state = PRELIGHT
  1722. file = "ui/null.png"
  1723. border = { 0, 0, 0, 0 }
  1724. stretch = TRUE
  1725. orientation = HORIZONTAL
  1726. }
  1727.  
  1728. image
  1729. {
  1730. function = SLIDER
  1731. state = INSENSITIVE
  1732. file = "ui/null.png"
  1733. border = { 0, 0, 0, 0 }
  1734. stretch = TRUE
  1735. orientation = HORIZONTAL
  1736. }
  1737.  
  1738. # Vertical
  1739. image
  1740. {
  1741. function = SLIDER
  1742. state = NORMAL
  1743. file = "ui/null.png"
  1744. border = { 0, 0, 0, 0 }
  1745. stretch = TRUE
  1746. orientation = VERTICAL
  1747. }
  1748.  
  1749. image
  1750. {
  1751. function = SLIDER
  1752. state = PRELIGHT
  1753. file = "ui/null.png"
  1754. border = { 0, 0, 0, 0 }
  1755. stretch = TRUE
  1756. orientation = VERTICAL
  1757. }
  1758.  
  1759. image
  1760. {
  1761. function = SLIDER
  1762. state = INSENSITIVE
  1763. file = "ui/null.png"
  1764. border = { 0, 0, 0, 0 }
  1765. stretch = TRUE
  1766. orientation = VERTICAL
  1767. }
  1768.  
  1769. # Function below removes the fuglies :)
  1770. image
  1771. {
  1772. function = BOX
  1773. file = "ui/transparent.png"
  1774. border = { 3, 3, 3, 3 }
  1775. stretch = TRUE
  1776. }
  1777. }
  1778. }
  1779.  
  1780. class "GtkRange" style "gimp-dark-range-style"
  1781.  
  1782. ###########################################################
  1783.  
  1784. style "gimp-dark-spin-scale-style"
  1785. {
  1786. fg[NORMAL] = "#131313"
  1787. bg[NORMAL] = "#1f1f1f"
  1788.  
  1789. engine "pixmap"
  1790. {
  1791. image
  1792. {
  1793. function = FLAT_BOX
  1794. detail = "entry_bg"
  1795. state = NORMAL
  1796. }
  1797.  
  1798. image
  1799. {
  1800. function = FLAT_BOX
  1801. detail = "entry_bg"
  1802. state = ACTIVE
  1803. }
  1804.  
  1805. image
  1806. {
  1807. function = BOX
  1808. state = NORMAL
  1809. detail = "spinbutton_up"
  1810. overlay_file = "ui/arrow-up-small.png"
  1811. overlay_stretch = FALSE
  1812. }
  1813.  
  1814. image
  1815. {
  1816. function = BOX
  1817. state = PRELIGHT
  1818. detail = "spinbutton_up"
  1819. overlay_file = "ui/arrow-up-small-prelight.png"
  1820. overlay_stretch = FALSE
  1821. }
  1822.  
  1823. image
  1824. {
  1825. function = BOX
  1826. state = ACTIVE
  1827. detail = "spinbutton_up"
  1828. overlay_file = "ui/arrow-up-small-prelight.png"
  1829. overlay_stretch = FALSE
  1830. }
  1831.  
  1832. image
  1833. {
  1834. function = BOX
  1835. state = INSENSITIVE
  1836. detail = "spinbutton_up"
  1837. overlay_file = "ui/arrow-up-small-insens.png"
  1838. overlay_stretch = FALSE
  1839. }
  1840.  
  1841. image
  1842. {
  1843. function = BOX
  1844. state = NORMAL
  1845. detail = "spinbutton_down"
  1846. overlay_file = "ui/arrow-down-small.png"
  1847. overlay_stretch = FALSE
  1848. }
  1849.  
  1850. image
  1851. {
  1852. function = BOX
  1853. state = PRELIGHT
  1854. detail = "spinbutton_down"
  1855. overlay_file = "ui/arrow-down-small-prelight.png"
  1856. overlay_stretch = FALSE
  1857. }
  1858.  
  1859. image
  1860. {
  1861. function = BOX
  1862. state = ACTIVE
  1863. detail = "spinbutton_down"
  1864. overlay_file = "ui/arrow-down-small-prelight.png"
  1865. overlay_stretch = FALSE
  1866. }
  1867.  
  1868. image
  1869. {
  1870. function = BOX
  1871. state = INSENSITIVE
  1872. detail = "spinbutton_down"
  1873. overlay_file = "ui/arrow-down-small-insens.png"
  1874. overlay_stretch = FALSE
  1875. }
  1876. }
  1877. }
  1878.  
  1879. class "GimpSpinScale" style "gimp-dark-spin-scale-style"
  1880.  
  1881. ###########################################################
  1882.  
  1883. style "gimp-dark-scrolled-window-style"
  1884. {
  1885. xthickness = 1
  1886. ythickness = 1
  1887.  
  1888. engine "pixmap"
  1889. {
  1890. image
  1891. {
  1892. function = SHADOW
  1893. file = "ui/frame.png"
  1894. border = { 5, 5, 5, 5 }
  1895. stretch = TRUE
  1896. }
  1897. }
  1898. }
  1899.  
  1900. class "GtkScrolledWindow" style "gimp-dark-scrolled-window-style"
  1901.  
  1902. ###########################################################
  1903.  
  1904. style "gimp-dark-frame-style"
  1905. {
  1906. xthickness = 1
  1907. ythickness = 1
  1908.  
  1909. engine "pixmap"
  1910. {
  1911. image
  1912. {
  1913. function = SHADOW
  1914. file = "ui/frame.png"
  1915. border = { 1, 1, 1, 1 }
  1916. stretch = TRUE
  1917. shadow = IN
  1918. }
  1919.  
  1920. image
  1921. {
  1922. function = SHADOW_GAP
  1923. file = "ui/frame.png"
  1924. border = { 1, 1, 1, 1 }
  1925. stretch = TRUE
  1926. gap_start_file = "ui/frame-gap-start.png"
  1927. gap_start_border = { 1, 0, 0, 0 }
  1928. gap_end_file = "ui/frame-gap-end.png"
  1929. gap_end_border = { 0, 1, 0, 0 }
  1930. shadow = IN
  1931. }
  1932.  
  1933. image
  1934. {
  1935. function = SHADOW
  1936. file = "ui/frame.png"
  1937. border = { 1, 1, 1, 1 }
  1938. stretch = TRUE
  1939. shadow = OUT
  1940. }
  1941.  
  1942. image
  1943. {
  1944. function = SHADOW_GAP
  1945. file = "ui/frame.png"
  1946. border = { 1, 1, 1, 1 }
  1947. stretch = TRUE
  1948. gap_start_file = "ui/frame-gap-start.png"
  1949. gap_start_border = { 1, 0, 0, 0 }
  1950. gap_end_file = "ui/frame-gap-end.png"
  1951. gap_end_border = { 0, 1, 0, 0 }
  1952. shadow = OUT
  1953. }
  1954.  
  1955. image
  1956. {
  1957. function = SHADOW
  1958. file = "ui/frame.png"
  1959. border = { 1, 1, 1, 1 }
  1960. stretch = TRUE
  1961. shadow = ETCHED_IN
  1962. }
  1963.  
  1964. image
  1965. {
  1966. function = SHADOW_GAP
  1967. file = "ui/frame.png"
  1968. border = { 1, 1, 1, 1 }
  1969. stretch = TRUE
  1970. gap_start_file = "ui/frame-gap-start.png"
  1971. gap_start_border = { 1, 0, 0, 0 }
  1972. gap_end_file = "ui/frame-gap-end.png"
  1973. gap_end_border = { 0, 1, 0, 0 }
  1974. shadow = ETCHED_IN
  1975. }
  1976.  
  1977. image
  1978. {
  1979. function = SHADOW
  1980. file = "ui/frame.png"
  1981. border = { 1, 1, 1, 1 }
  1982. stretch = TRUE
  1983. shadow = ETCHED_OUT
  1984. }
  1985.  
  1986. image
  1987. {
  1988. function = SHADOW_GAP
  1989. file = "ui/frame.png"
  1990. border = { 1, 1, 1, 1 }
  1991. stretch = TRUE
  1992. gap_start_file = "ui/frame-gap-start.png"
  1993. gap_start_border = { 1, 0, 0, 0 }
  1994. gap_end_file = "ui/frame-gap-end.png"
  1995. gap_end_border = { 0, 1, 0, 0 }
  1996. shadow = ETCHED_OUT
  1997. }
  1998. }
  1999. }
  2000.  
  2001. class "GtkFrame" style "gimp-dark-frame-style"
  2002.  
  2003. ###########################################################
  2004.  
  2005. style "gimp-dark-toolbox-frame-style"
  2006. {
  2007. engine "pixmap"
  2008. {
  2009. image
  2010. {
  2011. function = SHADOW
  2012. }
  2013. }
  2014. }
  2015.  
  2016. widget_class "*<GimpToolbox>*<GtkFrame>" style "gimp-dark-toolbox-frame-style"
  2017.  
  2018. ###########################################################
  2019.  
  2020. style "gimp-dark-toolbar-style"
  2021. {
  2022. engine "pixmap"
  2023. {
  2024. image
  2025. {
  2026. function = BOX
  2027. file = "ui/toolbar.png"
  2028. stretch = TRUE
  2029. border = { 1, 1, 1, 1 }
  2030. }
  2031.  
  2032. image
  2033. {
  2034. function = BOX_GAP
  2035. recolorable = TRUE
  2036. detail = "handlebox_bin"
  2037. file = "ui/gimp-handle-h.png"
  2038. border = { 4, 3, 4, 3 }
  2039. stretch = FALSE
  2040. }
  2041.  
  2042. image
  2043. {
  2044. function = HANDLE
  2045. overlay_file = "ui/gimp-handle-h.png"
  2046. overlay_stretch = FALSE
  2047. orientation = HORIZONTAL
  2048. }
  2049.  
  2050. image
  2051. {
  2052. function = HANDLE
  2053. overlay_file = "ui/gimp-handle-v.png"
  2054. overlay_stretch = FALSE
  2055. orientation = VERTICAL
  2056. }
  2057.  
  2058. image
  2059. {
  2060. function = VLINE
  2061. recolorable = TRUE
  2062. file = "ui/null.png"
  2063. stretch = TRUE
  2064. border = { 1, 1, 1, 1 }
  2065. }
  2066.  
  2067. image
  2068. {
  2069. function = HLINE
  2070. recolorable = TRUE
  2071. file = "ui/null.png"
  2072. stretch = TRUE
  2073. border = { 1, 1, 1, 1 }
  2074. }
  2075. }
  2076. }
  2077.  
  2078. class "GtkToolbar" style "gimp-dark-toolbar-style"
  2079. class "*HandleBox*" style "gimp-dark-toolbar-style"
  2080.  
  2081. ###########################################################
  2082.  
  2083. style "gimp-dark-combobox-separator-style"
  2084. {
  2085. xthickness = 0
  2086. ythickness = 0
  2087. GtkWidget::wide-separators = 1
  2088. }
  2089.  
  2090. widget_class "*<GtkComboBox>*<GtkSeparator>" style "gimp-dark-combobox-separator-style"
  2091.  
  2092. ###########################################################
  2093.  
  2094. style "gimp-dark-combobox-button-style"
  2095. {
  2096. xthickness = 3
  2097. ythickness = 3
  2098. }
  2099.  
  2100. widget_class "*<GtkComboBox>*<GtkButton>" style "gimp-dark-combobox-button-style"
  2101.  
  2102. ###########################################################
  2103.  
  2104. style "gimp-dark-combobox-style"
  2105. {
  2106. xthickness = 0
  2107. ythickness = 0
  2108. }
  2109.  
  2110. widget_class "*<GtkComboBox>" style "gimp-dark-combobox-style"
  2111.  
  2112. style "gimp-dark-combobox-style1"
  2113. {
  2114. xthickness = 0
  2115. ythickness = 0
  2116.  
  2117. engine "pixmap"
  2118. {
  2119. image
  2120. {
  2121. function = BOX
  2122. file = "ui/gimp-button-normal.png"
  2123. border = { 4, 4, 5, 4 }
  2124. stretch = TRUE
  2125. }
  2126. }
  2127. }
  2128.  
  2129. widget_class "*<GtkEntry>*<GtkButton>*" style "gimp-dark-combobox-style1"
  2130.  
  2131. ###########################################################
  2132.  
  2133. style "gimp-dark-button-style"
  2134. {
  2135. fg[PRELIGHT] = "#FBFBFB"
  2136. fg[ACTIVE] = "#9B9B9B"
  2137. fg[NORMAL] = "#CBCBCB"
  2138. fg[INSENSITIVE] = "#CBCBCB"
  2139. }
  2140.  
  2141. widget_class "*<GtkButton>*" style "gimp-dark-button-style"
  2142.  
  2143. ###########################################################
  2144.  
  2145. style "gimp-dark-gtkscale-style"
  2146. {
  2147. engine "pixmap"
  2148. {
  2149. image
  2150. {
  2151. function = SLIDER
  2152. recolorable = TRUE
  2153. file = "ui/bar-h.png"
  2154. border = { 2,2,2,2 }
  2155. stretch = TRUE
  2156. orientation = HORIZONTAL
  2157. }
  2158.  
  2159. image
  2160. {
  2161. function = SLIDER
  2162. recolorable = TRUE
  2163. file = "ui/bar-v.png"
  2164. border = { 2,2,2,2 }
  2165. stretch = TRUE
  2166. orientation = VERTICAL
  2167. }
  2168.  
  2169. image
  2170. {
  2171. function = BOX
  2172. recolorable = TRUE
  2173. file = "ui/slider-h.png"
  2174. border = {0,0,0,0}
  2175. stretch = TRUE
  2176. orientation = HORIZONTAL
  2177. }
  2178.  
  2179. image
  2180. {
  2181. function = BOX
  2182. recolorable = TRUE
  2183. file = "ui/slider-v.png"
  2184. border = {0,0,0,0}
  2185. stretch = TRUE
  2186. orientation = VERTICAL
  2187. }
  2188. }
  2189. }
  2190.  
  2191. class "GtkScale" style "gimp-dark-gtkscale-style"
  2192. class "GtkVScale" style "gimp-dark-gtkscale-style"
  2193. class "GtkHScale" style "gimp-dark-gtkscale-style"
  2194. widget_class "*GtkScale*" style "gimp-dark-gtkscale-style"
  2195. widget_class "*GtkVScale*" style "gimp-dark-gtkscale-style"
  2196. widget_class "*GtkHScale*" style "gimp-dark-gtkscale-style"
  2197.  
  2198. ###########################################################
  2199.  
  2200. style "tdsog-overlay-scrollbar"
  2201. {
  2202. bg[SELECTED] = "#CCC"
  2203. bg[INSENSITIVE] = "#AAA"
  2204. bg[ACTIVE] = "#EEE"
  2205. bg[NORMAL] = "#666"
  2206. bg[PRELIGHT] = "#666"
  2207.  
  2208. fg[NORMAL] = "#EEE"
  2209. }
  2210.  
  2211. widget_class "*<OsScrollbar>" style "tdsog-overlay-scrollbar"
  2212. widget_class "*<OsThumb>" style "tdsog-overlay-scrollbar"
  2213.  
  2214. ###########################################################
  2215.  
  2216. # Menu prelight fix for Ubuntu Unity
  2217. style "ubuntu-fix-menu-item"
  2218. {
  2219. engine "pixmap"
  2220. {
  2221. image
  2222. {
  2223. function = BOX
  2224. state = PRELIGHT
  2225. file = "ui/entry-border-fill-active.png"
  2226. border = { 1, 0, 1, 0 }
  2227. stretch = TRUE
  2228. }
  2229. }
  2230. }
  2231.  
  2232. class "GtkMenuItem" style "ubuntu-fix-menu-item"
  2233.  
  2234. ###########################################################
  2235.  
  2236. style "dark-python-console"
  2237. {
  2238. text[NORMAL] = "#8f8"
  2239. text[INSENSITIVE] = "#f88"
  2240. }
  2241.  
  2242. widget "python-fu-console" style "dark-python-console"
  2243.  
  2244. ###########################################################
  2245.  
  2246. style "gimp-dark-spin-scale-style"
  2247. {
  2248. engine "pixmap"
  2249. {
  2250. image
  2251. {
  2252. function = FLAT_BOX
  2253. detail = "entry_bg"
  2254. state = NORMAL
  2255. }
  2256.  
  2257. image
  2258. {
  2259. function = FLAT_BOX
  2260. detail = "entry_bg"
  2261. state = ACTIVE
  2262. }
  2263.  
  2264. image
  2265. {
  2266. function = BOX
  2267. state = NORMAL
  2268. detail = "spinbutton_up"
  2269. overlay_file = "ui/arrow-up-small.png"
  2270. overlay_stretch = FALSE
  2271. }
  2272.  
  2273. image
  2274. {
  2275. function = BOX
  2276. state = PRELIGHT
  2277. detail = "spinbutton_up"
  2278. overlay_file = "ui/arrow-up-small-prelight.png"
  2279. overlay_stretch = FALSE
  2280. }
  2281.  
  2282. image
  2283. {
  2284. function = BOX
  2285. state = ACTIVE
  2286. detail = "spinbutton_up"
  2287. overlay_file = "ui/arrow-up-small-prelight.png"
  2288. overlay_stretch = FALSE
  2289. }
  2290.  
  2291. image
  2292. {
  2293. function = BOX
  2294. state = INSENSITIVE
  2295. detail = "spinbutton_up"
  2296. overlay_file = "ui/arrow-up-small-insens.png"
  2297. overlay_stretch = FALSE
  2298. }
  2299.  
  2300. image
  2301. {
  2302. function = BOX
  2303. state = NORMAL
  2304. detail = "spinbutton_down"
  2305. overlay_file = "ui/arrow-down-small.png"
  2306. overlay_stretch = FALSE
  2307. }
  2308.  
  2309. image
  2310. {
  2311. function = BOX
  2312. state = PRELIGHT
  2313. detail = "spinbutton_down"
  2314. overlay_file = "ui/arrow-down-small-prelight.png"
  2315. overlay_stretch = FALSE
  2316. }
  2317.  
  2318. image
  2319. {
  2320. function = BOX
  2321. state = ACTIVE
  2322. detail = "spinbutton_down"
  2323. overlay_file = "ui/arrow-down-small-prelight.png"
  2324. overlay_stretch = FALSE
  2325. }
  2326.  
  2327. image
  2328. {
  2329. function = BOX
  2330. state = INSENSITIVE
  2331. detail = "spinbutton_down"
  2332. overlay_file = "ui/arrow-down-small-insens.png"
  2333. overlay_stretch = FALSE
  2334. }
  2335. }
  2336. }
  2337.  
  2338. class "GimpSpinScale" style "gimp-dark-spin-scale-style"
  2339.  
  2340. ###########################################################
  2341.  
  2342. style "gimp-dark-treeview" = "gimp-dark-default-style"
  2343. {
  2344. xthickness = 2
  2345. ythickness = 0
  2346.  
  2347. GtkTreeView::odd_row_color = "#383838"
  2348. GtkTreeView::even_row_color = "#383838"
  2349.  
  2350. #
  2351. # set custom text color here
  2352. #
  2353.  
  2354. #text[NORMAL] = "#C1C1C1"
  2355. #text[NORMAL] = "#C1C1C1"
  2356. #text[PRELIGHT] = "#0F0"
  2357. #text[SELECTED] = "#0F0"
  2358. #text[INSENSITIVE] = "#0F0"
  2359. #text[ACTIVE] = "#0F0"
  2360.  
  2361. engine "pixmap"
  2362. {
  2363. image
  2364. {
  2365. function = SHADOW
  2366. file = "ui/null.png"
  2367. border = { 0, 0, 0, 0 }
  2368. stretch = TRUE
  2369. }
  2370. image
  2371. {
  2372. function = FLAT_BOX
  2373. state = ACTIVE
  2374. file = "ui/null.png"
  2375. border = {1,1,1,1}
  2376. stretch = TRUE
  2377. }
  2378.  
  2379. image
  2380. {
  2381. function = FLAT_BOX
  2382. state = PRELIGHT
  2383. file = "ui/null.png"
  2384. border = {1,1,1,1}
  2385. stretch = TRUE
  2386. }
  2387.  
  2388. image
  2389. {
  2390. function = FLAT_BOX
  2391. state = NORMAL
  2392. file = "ui/null.png"
  2393. border = {1,1,1,1}
  2394. stretch = TRUE
  2395. }
  2396.  
  2397. image
  2398. {
  2399. function = FLAT_BOX
  2400. state = INSENSITIVE
  2401. file = "ui/null.png"
  2402. border = {1,1,1,1}
  2403. stretch = TRUE
  2404. }
  2405.  
  2406. image
  2407. {
  2408. function = FLAT_BOX
  2409. state = SELECTED
  2410. file = "ui/menuitem.png"
  2411. border = {1,1,1,1}
  2412. stretch = TRUE
  2413. }
  2414. }
  2415. }
  2416.  
  2417. class "GtkTreeView" style "gimp-dark-treeview"
  2418.  
  2419. # EOF
  2420.  
Add Comment
Please, Sign In to add comment