28 lines
743 B
PHP
Executable File
28 lines
743 B
PHP
Executable File
<?php
|
|
|
|
// List icons dimensions
|
|
$themeDimensionsIcons = array(16, 32, 48, 64, 96, 128, 192, 256, 384, 512);
|
|
|
|
$colorScheme = array(
|
|
// Light theme
|
|
"bg-light" => "white",
|
|
"bgField-light" => "#eeeeee",
|
|
"bgTextField-light" => "#e5e5e5",
|
|
"bgHelp-light" => "#ececec",
|
|
"border-light" => "#65666b",
|
|
"borderHover-light" => "#46484e",
|
|
"borderFocus-light" => "#2a2a2a",
|
|
"text-light" => "#2a2a2a",
|
|
"secondaryText-light" => "#868686",
|
|
// Dark theme
|
|
"bg-dark" => "#2a2a2a",
|
|
"bgField-dark" => "#31363B",
|
|
"bgTextField-dark" => "#232629",
|
|
"bgHelp-dark" => "#151616",
|
|
"border-dark" => "#5f5f5f",
|
|
"borderHover-dark" => "#808080",
|
|
"borderFocus-dark" => "white",
|
|
"text-dark" => "white",
|
|
"secondaryText-dark" => "#bababa"
|
|
);
|