2021-11-25 22:36:21 +01:00
|
|
|
<?php // This file is part of LibreQR, which is distributed under the GNU AGPLv3+ license
|
2019-08-13 21:17:08 +02:00
|
|
|
|
2021-03-07 23:03:33 +01:00
|
|
|
// List icons dimensions
|
|
|
|
$themeDimensionsIcons = array(16, 32, 48, 64, 96, 128, 192, 256, 384, 512);
|
2019-08-13 21:17:08 +02:00
|
|
|
|
2021-03-07 23:03:33 +01:00
|
|
|
$colorScheme = array(
|
|
|
|
// Light theme
|
|
|
|
"bg-light" => "#14678b",
|
|
|
|
"bgField-light" => "#2186b1",
|
|
|
|
"bgTextField-light" => "#2186b1",
|
|
|
|
"bgHelp-light" => "#118abe",
|
|
|
|
"border-light" => "#42a0c8",
|
|
|
|
"borderHover-light" => "#87d1f1",
|
|
|
|
"borderFocus-light" => "#e2f6ff",
|
|
|
|
"text-light" => "#ffffff",
|
|
|
|
"secondaryText-light" => "#bbe1f1",
|
|
|
|
// Dark theme
|
|
|
|
"bg-dark" => "#14678b",
|
|
|
|
"bgField-dark" => "#2186b1",
|
|
|
|
"bgTextField-dark" => "#2186b1",
|
|
|
|
"bgHelp-dark" => "#118abe",
|
|
|
|
"border-dark" => "#42a0c8",
|
|
|
|
"borderHover-dark" => "#87d1f1",
|
|
|
|
"borderFocus-dark" => "#e2f6ff",
|
|
|
|
"text-dark" => "#ffffff",
|
|
|
|
"secondaryText-dark" => "#bbe1f1"
|
|
|
|
);
|