03-07-2021, 01:40 PM
Great idea! Thanks,
Done it, with some personal themes I added like this:
Greg
Done it, with some personal themes I added like this:
Code:
sudo sqlite3 /var/local/www/db/moode-sqlite3.db -> Connect to DB
.schema cfg_theme -> give table structure (just for education)
select * from cfg_theme; -> show content of table (to be sure new ids will not conflict)
insert into cfg_theme (id,theme_name,tx_color,bg_color,mbg_color) values(16, 'Steppe', 'ddd', '162,146,146', '64,58,58,0.75');
insert into cfg_theme (id,theme_name,tx_color,bg_color,mbg_color) values(17, 'Dark Clay', 'ddd', '116,111,111', '69,66,66,0.75');
-> insert new themes
.exit
Greg