mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-17 21:12:16 +01:00
feat: update status filter icon colors to match chips
- Use softer, more visible colors for status icons - draft: #9E9E9E (medium gray) - available/partial: #D4A843 (soft gold) - signed: #4CAF50 (medium green) Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
parent
a6d748e91e
commit
affa4f987d
1 changed files with 4 additions and 4 deletions
|
|
@ -21,22 +21,22 @@ export const fileStatus = [
|
|||
},
|
||||
{
|
||||
id: 0,
|
||||
icon: colorize(svgFile, '#E0E0E0'),
|
||||
icon: colorize(svgFile, '#9E9E9E'),
|
||||
label: t('libresign', 'draft'),
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
icon: colorize(svgSignature, '#B2E0B2'),
|
||||
icon: colorize(svgSignature, '#D4A843'),
|
||||
label: t('libresign', 'available for signature'),
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
icon: colorize(svgFractionOneHalf, '#F0E68C'),
|
||||
icon: colorize(svgFractionOneHalf, '#D4A843'),
|
||||
label: t('libresign', 'partially signed'),
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
icon: colorize(svgSignatureFreehand, '#A0C4FF'),
|
||||
icon: colorize(svgSignatureFreehand, '#4CAF50'),
|
||||
label: t('libresign', 'signed'),
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue