forked from vanilla-music/vanilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate-themes.pl
173 lines (141 loc) · 6.7 KB
/
generate-themes.pl
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#!/usr/bin/perl
use strict;
use constant THEMES_OUTDIR => './res/values-v21/';
use constant THEMES_LIST => './res/values-v21/themes-list.xml';
my $THEMES = [
{
_name => 'standard',
light => { colorAccent => '#ff3e677a', colorPrimary => '#ff37474f', colorPrimaryDark => '#ff263238', _bg => '#fff0f0f0' },
dark => { colorAccent => '#ff3e677a', colorPrimary => '#ff37474f', colorPrimaryDark => '#ff263238', _bg => '#ff2a2a2a' },
},
{
_name => 'greyish',
light => { colorAccent => '#ff212121', colorPrimary => '#ff212121', colorPrimaryDark => '#ff090909', _bg => '#fff0f0f0' },
dark => { colorAccent => '#ffececec', colorPrimary => '#ff212121', colorPrimaryDark => '#ff090909', _bg => '#ff2a2a2a' },
},
{
_name => 'orange',
light => { colorAccent => '#FFF57F17', colorPrimary => '#FFE65100', colorPrimaryDark => '#FFBF360C', _bg => '#fff0f0f0' },
dark => { colorAccent => '#FFF57F17', colorPrimary => '#FFE65100', colorPrimaryDark => '#FFBF360C', _bg => '#ff2a2a2a' },
},
{
_name => 'blue',
light => { colorAccent => '#FF03A9F4', colorPrimary => '#FF0277BD', colorPrimaryDark => '#FF01579B', _bg => '#fff0f0f0' },
dark => { colorAccent => '#FF03A9F4', colorPrimary => '#FF0277BD', colorPrimaryDark => '#FF01579B', _bg => '#ff2a2a2a' },
},
];
my $BUFF_TENTRIES = '';
my $BUFF_TVALS = '';
my $BUFF_TSTYLES = '';
my $THEME_ID = 0;
foreach my $theme_ref (@$THEMES) {
my $theme_name = $theme_ref->{_name};
my $theme_id = ($theme_name eq 'standard' ? '' : ucfirst($theme_name)."."); # standard has no prefix
my $outfile = THEMES_OUTDIR."/theme-$theme_name.xml";
my $outbuff = get_theme_xml($theme_ref, $theme_id);
open(OUT, ">", $outfile) or die "Can not write to $outfile: $!\n";
print OUT $outbuff;
close(OUT);
# use this loop to also populate the theme list output
# assumes that get_theme_xml created two themes per definition (light and dark)
foreach my $variant ('', 'Dark.') {
my $tvvar = ($variant eq '' ? 'light' : 'dark');
my $tvarr = join(",", map { $theme_ref->{$tvvar}->{$_} } qw(colorPrimaryDark _bg colorPrimary));
$BUFF_TENTRIES .= "\t\t<item>$variant".ucfirst($theme_name)."</item>\n";
$BUFF_TVALS .= "\t\t<item>".($THEME_ID).",$tvarr</item>\n";
$BUFF_TSTYLES .= "\t\t<item>\@style/${theme_id}${variant}VanillaBase</item>\n";
$THEME_ID++;
}
}
open(OUT, ">", THEMES_LIST) or die "Cannot write theme list: $!\n";
print OUT << "EOLIST";
<?xml version="1.0" encoding="utf-8"?>
<!-- THIS FILE IS AUTOGENERATED BY generate-themes.pl - DO NOT TOUCH! -->
<resources>
<!-- human visible names of the themes -->
<string-array name="theme_entries">
$BUFF_TENTRIES </string-array>
<!-- the value stored in the shared preferences for each theme -->
<string-array name="theme_values">
$BUFF_TVALS </string-array>
<!-- the style id for each theme -->
<integer-array name="theme_styles">
$BUFF_TSTYLES </integer-array>
</resources>
EOLIST
close(OUT);
sub get_theme_xml {
my($this, $tid) = @_;
my $DATA = << "EOF";
<?xml version="1.0" encoding="utf-8"?>
<!--
*** THIS FILE WAS GENERATED BY 'generate-themes.pl' - DO NOT TOUCH ***
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<resources>
<style name="${tid}VanillaBase" parent="android:Theme.Material.Light.DarkActionBar">
<item name="overlay_background_color">\@color/overlay_background_light</item>
<item name="overlay_foreground_color">\@color/overlay_foreground_light</item>
<item name="float_color">\@color/material_grey_400</item>
<item name="tabs_background">$this->{light}->{colorPrimary}</item>
<item name="now_playing_marker">$this->{light}->{colorAccent}</item>
<item name="controls_normal">\@color/material_grey_600</item>
<item name="controls_active">$this->{light}->{colorAccent}</item>
<item name="android:colorAccent">$this->{light}->{colorAccent}</item>
<item name="android:colorPrimary">$this->{light}->{colorPrimary}</item>
<item name="android:colorPrimaryDark">$this->{light}->{colorPrimaryDark}</item>
</style>
<style name="${tid}Playback" parent="${tid}VanillaBase">
<item name="android:actionBarStyle">\@style/Universal.PlaybackActionBar</item>
</style>
<style name="${tid}BackActionBar" parent="${tid}VanillaBase">
<item name="android:actionBarStyle">\@style/Universal.PlaybackActionBar</item>
</style>
<style name="${tid}Library" parent="${tid}VanillaBase">
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
</style>
<style name="${tid}PopupDialog" parent="android:Theme.Material.Light.Dialog.MinWidth">
<item name="controls_normal">\@color/material_grey_600</item>
<item name="controls_active">$this->{light}->{colorAccent}</item>
</style>
<!-- dark theme -->
<style name="${tid}Dark.VanillaBase" parent="android:Theme.Material">
<item name="overlay_background_color">\@color/overlay_background_dark</item>
<item name="overlay_foreground_color">\@color/overlay_foreground_dark</item>
<item name="float_color">\@color/material_grey_900</item>
<item name="tabs_background">$this->{dark}->{colorPrimary}</item>
<item name="now_playing_marker">$this->{dark}->{colorAccent}</item>
<item name="controls_normal">\@color/material_grey_600</item>
<item name="controls_active">$this->{dark}->{colorAccent}</item>
<item name="android:colorAccent">$this->{dark}->{colorAccent}</item>
<item name="android:colorPrimary">$this->{dark}->{colorPrimary}</item>
<item name="android:colorPrimaryDark">$this->{dark}->{colorPrimaryDark}</item>
</style>
<style name="${tid}Dark.Playback" parent="${tid}Dark.VanillaBase">
<item name="android:actionBarStyle">\@style/Universal.PlaybackActionBar</item>
</style>
<style name="${tid}Dark.BackActionBar" parent="${tid}Dark.VanillaBase">
<item name="android:actionBarStyle">\@style/Universal.PlaybackActionBar</item>
</style>
<style name="${tid}Dark.Library" parent="${tid}Dark.VanillaBase">
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
</style>
<style name="${tid}Dark.PopupDialog" parent="android:Theme.Material.Dialog.MinWidth">
<item name="controls_normal">\@color/material_grey_600</item>
<item name="controls_active">$this->{dark}->{colorAccent}</item>
</style>
</resources>
EOF
return $DATA
}