Rushabh Mehta | b0d32b7 | 2012-09-28 16:11:57 +0530 | [diff] [blame] | 1 | erpnext.themes = { |
| 2 | metal: { |
| 3 | sidebar: "#f2f2f2", |
| 4 | titlebar: "#dfdfdf", |
| 5 | toolbar: "#e9e9e9" |
| 6 | }, |
| 7 | desert: { |
| 8 | sidebar: "#FFFDF7", |
| 9 | titlebar: "#DAD4C2", |
| 10 | toolbar: "#FAF6E9" |
| 11 | }, |
| 12 | tropic: { |
| 13 | sidebar: "#FAFFF7", |
| 14 | toolbar: "#EEFAE9", |
| 15 | titlebar: "#D7ECD1" |
| 16 | }, |
| 17 | sky: { |
| 18 | sidebar: "#F7FFFE", |
| 19 | toolbar: "#E9F9FA", |
| 20 | titlebar: "#D7F5F7" |
| 21 | }, |
| 22 | snow: { |
| 23 | sidebar: "#fff", |
| 24 | titlebar: "#fff", |
| 25 | toolbar: "#fff" |
| 26 | }, |
| 27 | sun: { |
| 28 | sidebar: "#FFFFEF", |
| 29 | titlebar: "lightYellow", |
| 30 | toolbar: "#FFFDCA" |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | erpnext.set_theme = function(theme) { |
| 35 | wn.dom.set_style(repl(".layout-wrapper-background { \ |
| 36 | background-color: %(sidebar)s !important; }\ |
| 37 | .appframe-toolbar { \ |
| 38 | background-color: %(toolbar)s !important; }\ |
| 39 | .appframe-titlebar { \ |
| 40 | background-color: %(titlebar)s !important; }", erpnext.themes[theme])); |
| 41 | } |