1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-23 22:36:32 +02:00

Mobile: Implement plugin screen redesign (#10465)

This commit is contained in:
Henry Heino
2024-06-04 01:57:52 -07:00
committed by GitHub
parent 19f0b667b1
commit 06f42e8246
39 changed files with 1460 additions and 633 deletions

View File

@@ -48,6 +48,7 @@ const theme: Theme = {
searchMarkerColor: 'black',
warningBackgroundColor: '#013F74',
destructiveColor: '#F07777',
tableBackgroundColor: 'rgb(40, 41, 42)',
codeBackgroundColor: 'rgb(47, 48, 49)',

View File

@@ -45,6 +45,7 @@ const theme: Theme = {
searchMarkerColor: 'black',
warningBackgroundColor: '#FFD08D',
destructiveColor: '#D00707',
tableBackgroundColor: 'rgb(247, 247, 247)',
codeBackgroundColor: 'rgb(243, 243, 243)',

View File

@@ -50,6 +50,7 @@ export interface Theme {
searchMarkerColor: string;
warningBackgroundColor: string;
destructiveColor: string;
tableBackgroundColor: string;
codeBackgroundColor: string;