forked from xyztobixyz/OSM-Swiss-Style
-
Notifications
You must be signed in to change notification settings - Fork 0
/
palette.mss
152 lines (115 loc) · 4.76 KB
/
palette.mss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* ****************************************************************** */
/* OSM BRIGHT for Imposm */
/* ****************************************************************** */
/* For basic style customization you can simply edit the colors and
* fonts defined in this file. For more detailed / advanced
* adjustments explore the other files.
*
* GENERAL NOTES
*
* There is a slight performance cost in rendering line-caps. An
* effort has been made to restrict line-cap definitions to styles
* where the results will be visible (lines at least 2 pixels thick).
*/
/* ================================================================== */
/* FONTS
/* ================================================================== */
/* directory to load fonts from in addition to the system directories */
Map { font-directory: url(./fonts); }
/* set up font sets for various weights and styles */
@sans_lt: "Open Sans Regular","DejaVu Sans Book","unifont Medium";
@sans_lt_italic: "Open Sans Italic","DejaVu Sans Italic","unifont Medium";
@sans: "Open Sans Semibold","DejaVu Sans Book","unifont Medium";
@sans_italic: "Open Sans Semibold Italic","DejaVu Sans Italic","unifont Medium";
@sans_bold: "Open Sans Bold","DejaVu Sans Bold","unifont Medium";
@sans_bold_italic: "Open Sans Bold Italic","DejaVu Sans Bold Italic","unifont Medium";
/* Some fonts are larger or smaller than others. Use this variable to
globally increase or decrease the font sizes. */
/* Note this is only implemented for certain things so far */
@text_adjust: 0;
/* ================================================================== */
/* LANDUSE & LANDCOVER COLORS
/* ================================================================== */
@land: #fffcc6;
@water: #77bbf6;
@grass: #ccf749;
@beach: #ffda85;
@park: #aef166;
@cemetery: #D6DED2;
@wooded: #76d11c;
@agriculture: #F2E8B6;
@building: #b5adad;
@hospital: rgb(229,198,195);
@school: #FFF5CC;
@sports: #B8E6B8;
@residential: @land * 0.98;
@commercial: @land * 0.97;
@industrial: @land * 0.96;
@parking: #EEE;
@glacier: #DDECEC;
@glacier_low: #9BCCFE;
/* ================================================================== */
/* ROAD COLORS
/* ================================================================== */
/* For each class of road there are three color variables:
* - line: for lower zoomlevels when the road is represented by a
* single solid line.
* - case: for higher zoomlevels, this color is for the road's
* casing (outline).
* - fill: for higher zoomlevels, this color is for the road's
* inner fill (inline).
*/
@motorway_line: #E65C5C;
@motorway_fill: lighten(@motorway_line,10%);
@motorway_case: @motorway_line * 0.9;
@trunk_line: #E68A5C;
@trunk_fill: lighten(@trunk_line,10%);
@trunk_case: @trunk_line * 0.9;
@primary_line: #FFC859;
@primary_fill: lighten(@primary_line,10%);
@primary_case: @primary_line * 0.9;
@secondary_line: #FFE873;
@secondary_fill: lighten(@secondary_line,10%);
@secondary_case: @secondary_line * 0.9;
@standard_line: @land * 0.85;
@standard_fill: #fff;
@standard_case: @land * 0.9;
@pedestrian_line: @standard_line;
@pedestrian_fill: #FAFAF5;
@pedestrian_case: @land;
@cycle_line: @standard_line;
@cycle_fill: #FAFAF5;
@cycle_case: @land;
@rail_line: #999;
@rail_fill: #fff;
@rail_case: @land;
@aeroway: #ddd;
/* ================================================================== */
/* BOUNDARY COLORS
/* ================================================================== */
@admin_2: #af74be;
/* ================================================================== */
/* LABEL COLORS
/* ================================================================== */
/* We set up a default halo color for places so you can edit them all
at once or override each individually. */
@place_halo: fadeout(#fff,34%);
@country_text: #435;
@country_halo: @place_halo;
@state_text: #546;
@state_halo: @place_halo;
@city_text: #444;
@city_halo: @place_halo;
@town_text: #666;
@town_halo: @place_halo;
@poi_text: #888;
@road_text: #777;
@road_halo: #fff;
@other_text: #888;
@other_halo: @place_halo;
@locality_text: #aaa;
@locality_halo: @land;
/* Also used for other small places: hamlets, suburbs, localities */
@village_text: #888;
@village_halo: @place_halo;
/* ****************************************************************** */