16 lines
423 B
PHP
Executable File
16 lines
423 B
PHP
Executable File
<?php
|
|
|
|
$themeDimensionsIcons = array(16, 32, 48, 64, 96, 128, 192, 256, 384, 512); // Liste les dimensions des icones
|
|
|
|
$variablesTheme = array(
|
|
"bg" => "#14678b",
|
|
"bgField" => "#2186b1",
|
|
"bgTextField" => "#2186b1",
|
|
"bgHelp" => "#118abe",
|
|
"border" => "#42a0c8",
|
|
"borderHover" => "#87d1f1",
|
|
"borderFocus" => "#e2f6ff",
|
|
"text" => "#ffffff",
|
|
"secondaryText" => "#bbe1f1"
|
|
); // Définit les couleurs du thème
|