88 lines
2.1 KiB
Lua
88 lines
2.1 KiB
Lua
-- look_ios.lua drawing engine configuration file for Ion.
|
|
|
|
if not gr.select_engine("de") then return end
|
|
|
|
de.reset()
|
|
|
|
--este d8d8d8 por este d8d8d8
|
|
|
|
de.defstyle("*", {
|
|
shadow_colour = "#606060",
|
|
highlight_colour = "#ffffff",
|
|
background_colour = "#d8d8d8",
|
|
foreground_colour = "#000000",
|
|
padding_pixels = 1,
|
|
highlight_pixels = 1,
|
|
shadow_pixels = 1,
|
|
border_style = "elevated",
|
|
font = "-*-helvetica-medium-r-normal-*-14-*-*-*-*-*-*-*",
|
|
text_align = "center",
|
|
})
|
|
|
|
de.defstyle("frame", {
|
|
background_colour = "#000000",
|
|
transparent_background = true,
|
|
})
|
|
|
|
de.defstyle("tab", {
|
|
font = "-*-helvetica-medium-r-normal-*-10-*-*-*-*-*-*-*",
|
|
de.substyle("active-selected", {
|
|
-- shadow_colour = "#f09000",
|
|
shadow_colour = "#060097",
|
|
-- highlight_colour = "#0085ff",
|
|
highlight_colour = "#0085ff",
|
|
-- background_colour = "#f0c000",
|
|
background_colour = "#1240ff",
|
|
foreground_colour = "#ffffff",
|
|
}),
|
|
de.substyle("active-unselected", {
|
|
shadow_colour = "#606060",
|
|
highlight_colour = "#ffffff",
|
|
background_colour = "#d8d8d8",
|
|
foreground_colour = "#000000",
|
|
-- foreground_colour = "#d4d4d4",
|
|
}),
|
|
de.substyle("inactive-selected", {
|
|
shadow_colour = "#606060",
|
|
highlight_colour = "#efefef",
|
|
background_colour = "#a8a8a8b0b0b0",
|
|
-- foreground_colour = "#000000",
|
|
foreground_colour = "#ededed",
|
|
}),
|
|
de.substyle("inactive-unselected", {
|
|
shadow_colour = "#606060",
|
|
highlight_colour = "#ffffff",
|
|
background_colour = "#d8d8d8",
|
|
foreground_colour = "#000000",
|
|
}),
|
|
text_align = "center",
|
|
})
|
|
|
|
de.defstyle("input", {
|
|
de.substyle("*-cursor", {
|
|
background_colour = "#000000",
|
|
foreground_colour = "#d8d8d8",
|
|
}),
|
|
de.substyle("*-selection", {
|
|
background_colour = "#f0c000",
|
|
foreground_colour = "#000000",
|
|
}),
|
|
})
|
|
|
|
dopath("lookcommon_emboss")
|
|
|
|
de.defstyle("frame-tiled", {
|
|
spacing = 1,
|
|
})
|
|
|
|
de.defstyle("frame-tiled-alt", {
|
|
spacing = 0,
|
|
})
|
|
|
|
de.defstyle("tab-frame-tiled", {
|
|
spacing = 0,
|
|
})
|
|
|
|
gr.refresh()
|
|
|