-
Notifications
You must be signed in to change notification settings - Fork 11
/
palette.mss
143 lines (108 loc) · 4.17 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
/* ****************************************************************** */
/* OSM BRIGHT for Imposm */
/* ****************************************************************** */
/* ================================================================== */
/* 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', 'Unifont Medium';
@sans: 'Open Sans Semibold', 'DejaVu Sans Book', 'Unifont Medium';
@sans_italic: 'Open Sans Semibold 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: #FCFBE7;
@water: #C4DFF6;
@water4: #6A88B0;
@water56: #6A88AE;
@water7: #6987AD;
@grass: #E6F2C1;
@meadow: @grass*1.05;
@beach: #FFEEC7;
@park: #DAF2C1;
@cemetery: #D6DED2;
@wooded: #C3D9AD;
@agriculture: #F2E8B6;
@allotments: @grass;
@building: #E8E5E3;
@hospital: #F2CBCB*1.16;
@school: lighten(#fdf1ba, 8%); //#fff7e6;
@sports: #B8E6B8;
@residential: @land * 0.975;
@commercial: @land * 0.975;
@industrial: @land * 0.96;
@parking: #EEE;
@tourism: darken(@park,45%);
/* ================================================================== */
/* 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_case*0.95;
@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: #324;
/* ================================================================== */
/* 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: #555;
@town_halo: @place_halo;
@poi_text: #888;
@road_text: #666;
@road_halo: #fff;
@other_text: #777;
@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;