altocompta/include/sql/patch/upgrade174.sql
sparkyx 9fc6cb1454 Tache 0001743 : couleur sont dans un menu séparé,
amélioration de l'ergonomie + test phpunit
2022-08-20 18:18:30 +02:00

21 lines
1 KiB
PL/PgSQL

begin;
create table parm_appearance (a_code text primary key , a_value text not null);
insert into parm_appearance values ('H2' , '#9fbcd6')
,('MENU1','#000074')
,('BODY','#ffffff')
,('MENU2','#3d3d87')
,('MENU1-SELECTED','#506cb8')
,('FONT-MENU1','#ffffff')
,('FONT-MENU2','#ffffff')
,('FONT-TABLE','#222bd0')
,('FONT-DEFAULT','#000074')
,('FONT-TABLE-HEADER','#0C106D')
,('FOLDER','#ffffff')
,('FONT-FOLDER','#000074')
,('TR-ODD','#DCE7F5')
,('TR-EVEN','#ffffff')
,('INNER-BOX','#DCE1EF')
;
insert into version (val,v_description) values (175,'Folder Appearance');
commit;