1@import "plugin-wrap.less";
2
3.dokuwiki {
4    div.wrap_box,
5    div.wrap_info,
6    div.wrap_tip,
7    div.wrap_important,
8    div.wrap_alert,
9    div.wrap_help,
10    div.wrap_download,
11    div.wrap_todo {
12        border: none;
13        background: @ini_accent;
14    }
15
16    div.wrap_tip {
17        background: #fff79f;
18    }
19
20    div.wrap_important {
21        background: #ffd39f;
22    }
23
24    div.wrap_alert {
25        background: #ffbcaf;
26    }
27
28    div.wrap_help {
29        background: #dcc2ef;
30    }
31
32    div.wrap_download {
33        background: #d6efc2;
34    }
35
36    div.wrap_todo {
37        background: #c2efdd;
38    }
39}
40