Skip to content

Commit 657f2e8

Browse files
authored
Merge pull request #34272 from nextcloud/enh/shipped-background-primary-colors
Add primary color presets for shipped backgrounds
2 parents 0e41530 + 6774288 commit 657f2e8

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

apps/theming/lib/Service/BackgroundService.php

+17-1
Original file line numberDiff line numberDiff line change
@@ -49,67 +49,83 @@ class BackgroundService {
4949
'anatoly-mikhaltsov-butterfly-wing-scale.jpg' => [
5050
'attribution' => 'Butterfly wing scale (Anatoly Mikhaltsov, CC BY-SA)',
5151
'attribution_url' => 'https://commons.wikimedia.org/wiki/File:%D0%A7%D0%B5%D1%88%D1%83%D0%B9%D0%BA%D0%B8_%D0%BA%D1%80%D1%8B%D0%BB%D0%B0_%D0%B1%D0%B0%D0%B1%D0%BE%D1%87%D0%BA%D0%B8.jpg',
52+
'primary_color' => '#a53c17',
5253
],
5354
'bernie-cetonia-aurata-take-off-composition.jpg' => [
5455
'attribution' => 'Cetonia aurata take off composition (Bernie, Public Domain)',
5556
'attribution_url' => 'https://commons.wikimedia.org/wiki/File:Cetonia_aurata_take_off_composition_05172009.jpg',
5657
'theming' => self::THEMING_MODE_DARK,
58+
'primary_color' => '#56633d',
5759
],
5860
'dejan-krsmanovic-ribbed-red-metal.jpg' => [
5961
'attribution' => 'Ribbed red metal (Dejan Krsmanovic, CC BY)',
6062
'attribution_url' => 'https://www.flickr.com/photos/dejankrsmanovic/42971456774/',
63+
'primary_color' => '#9c4236',
6164
],
6265
'eduardo-neves-pedra-azul.jpg' => [
6366
'attribution' => 'Pedra azul milky way (Eduardo Neves, CC BY-SA)',
6467
'attribution_url' => 'https://commons.wikimedia.org/wiki/File:Pedra_Azul_Milky_Way.jpg',
68+
'primary_color' => '#4f6071',
6569
],
6670
'european-space-agency-barents-bloom.jpg' => [
6771
'attribution' => 'Barents bloom (European Space Agency, CC BY-SA)',
6872
'attribution_url' => 'https://www.esa.int/ESA_Multimedia/Images/2016/08/Barents_bloom',
73+
'primary_color' => '#396475',
6974
],
7075
'hannes-fritz-flippity-floppity.jpg' => [
7176
'attribution' => 'Flippity floppity (Hannes Fritz, CC BY-SA)',
7277
'attribution_url' => 'http://hannes.photos/flippity-floppity',
78+
'primary_color' => '#98415a',
7379
],
7480
'hannes-fritz-roulette.jpg' => [
7581
'attribution' => 'Roulette (Hannes Fritz, CC BY-SA)',
7682
'attribution_url' => 'http://hannes.photos/roulette',
83+
'primary_color' => '#845334',
7784
],
7885
'hannes-fritz-sea-spray.jpg' => [
7986
'attribution' => 'Sea spray (Hannes Fritz, CC BY-SA)',
8087
'attribution_url' => 'http://hannes.photos/sea-spray',
88+
'primary_color' => '#4f6071',
8189
],
8290
'kamil-porembinski-clouds.jpg' => [
8391
'attribution' => 'Clouds (Kamil Porembiński, CC BY-SA)',
8492
'attribution_url' => 'https://www.flickr.com/photos/paszczak000/8715851521/',
93+
// Originally #0082c9 but adjusted for accessibility
94+
'primary_color' => '#00639a',
8595
],
8696
'bernard-spragg-new-zealand-fern.jpg' => [
8797
'attribution' => 'New zealand fern (Bernard Spragg, CC0)',
8898
'attribution_url' => 'https://commons.wikimedia.org/wiki/File:NZ_Fern.(Blechnum_chambersii)_(11263534936).jpg',
99+
'primary_color' => '#316b26',
89100
],
90101
'rawpixel-pink-tapioca-bubbles.jpg' => [
91102
'attribution' => 'Pink tapioca bubbles (Rawpixel, CC BY)',
92103
'attribution_url' => 'https://www.flickr.com/photos/byrawpixel/27665140298/in/photostream/',
93104
'theming' => self::THEMING_MODE_DARK,
105+
'primary_color' => '#7b4e7e',
94106
],
95107
'nasa-waxing-crescent-moon.jpg' => [
96108
'attribution' => 'Waxing crescent moon (NASA, Public Domain)',
97109
'attribution_url' => 'https://www.nasa.gov/image-feature/a-waxing-crescent-moon',
110+
'primary_color' => '#005ac1',
98111
],
99112
'tommy-chau-already.jpg' => [
100113
'attribution' => 'Cityscape (Tommy Chau, CC BY)',
101114
'attribution_url' => 'https://www.flickr.com/photos/90975693@N05/16910999368',
115+
'primary_color' => '#6a2af4',
102116
],
103117
'tommy-chau-lion-rock-hill.jpg' => [
104118
'attribution' => 'Lion rock hill (Tommy Chau, CC BY)',
105119
'attribution_url' => 'https://www.flickr.com/photos/90975693@N05/17136440246',
106120
'theming' => self::THEMING_MODE_DARK,
121+
'primary_color' => '#7f4f70',
107122
],
108123
'lali-masriera-yellow-bricks.jpg' => [
109124
'attribution' => 'Yellow bricks (Lali Masriera, CC BY)',
110125
'attribution_url' => 'https://www.flickr.com/photos/visualpanic/3982464447',
111126
'theming' => self::THEMING_MODE_DARK,
112-
]
127+
'primary_color' => '#7f5700',
128+
],
113129
];
114130

115131
private IRootFolder $rootFolder;

0 commit comments

Comments
 (0)