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" => "#157097",
|
|
"bgField" => "#2794c2",
|
|
"bgTextField" => "#2794c2",
|
|
"bgHelp" => "#118abe",
|
|
"border" => "#48aed9",
|
|
"borderHover" => "#87d1f1",
|
|
"borderFocus" => "#e2f6ff",
|
|
"text" => "#d5f3ff",
|
|
"secondaryText" => "#65b7da"
|
|
); // Définit les couleurs du thème
|