]> git.decadent.org.uk Git - ion3.git/blob - etc/look_ios.lua
Update cfg_kludge_flash for Flash 10
[ion3.git] / etc / look_ios.lua
1 -- look_ios.lua drawing engine configuration file for Ion.
2
3 if not gr.select_engine("de") then return end
4
5 de.reset()
6
7 de.defstyle("*", {
8     shadow_colour = "#606060",
9     highlight_colour = "#ffffff",
10     background_colour = "#d8d8d8",
11     foreground_colour = "#000000",
12     padding_pixels = 1,
13     highlight_pixels = 1,
14     shadow_pixels = 1,
15     border_style = "elevated",
16     font = "-*-helvetica-medium-r-normal-*-14-*-*-*-*-*-*-*",
17     text_align = "center",
18 })
19
20 de.defstyle("tab", {
21     font = "-*-helvetica-bold-r-normal-*-10-*-*-*-*-*-*-*",
22     de.substyle("active-selected", {
23         shadow_colour = "#f09000",
24         highlight_colour = "#f0f066",
25         background_colour = "#f0c000",
26         foreground_colour = "#000000",
27     }),
28     de.substyle("active-unselected", {
29         shadow_colour = "#606060",
30         highlight_colour = "#ffffff",
31         background_colour = "#d8d8d8",
32         foreground_colour = "#000000",
33     }),
34     de.substyle("inactive-selected", {
35         shadow_colour = "#606060",
36         highlight_colour = "#efefef",
37         background_colour = "#a8a8a8",
38         foreground_colour = "#000000",
39     }),
40     de.substyle("inactive-unselected", {
41         shadow_colour = "#606060",
42         highlight_colour = "#ffffff",
43         background_colour = "#d8d8d8",
44         foreground_colour = "#000000",
45     }),
46     text_align = "center",
47 })
48
49 de.defstyle("input", {
50     de.substyle("*-cursor", {
51         background_colour = "#000000",
52         foreground_colour = "#d8d8d8",
53     }),
54     de.substyle("*-selection", {
55         background_colour = "#f0c000",
56         foreground_colour = "#000000",
57     }),
58 })
59
60 dopath("lookcommon_emboss")
61
62 de.defstyle("frame-tiled", {
63     spacing = 0,
64 })
65
66 de.defstyle("frame-tiled-alt", {
67     spacing = 0,
68 })
69
70 de.defstyle("tab-frame-tiled", {
71     spacing = 0,
72 })
73
74 gr.refresh()
75