feat: introduce skins to customise the theme (#105)

This commit is contained in:
Óscar
2023-08-10 13:21:52 +02:00
committed by GitHub
parent d2780f42a3
commit f8cce3001c
45 changed files with 673 additions and 7 deletions

7
sass/skins/blue.scss Normal file
View File

@@ -0,0 +1,7 @@
:root {
--primary-color: #3271E7; // Contrast ratio: 4.51:1
}
[data-theme='dark'] {
--primary-color: #6cacff; // Contrast ratio: 7.05:1
}

View File

@@ -0,0 +1,9 @@
// Evangelion Unit-02.
:root {
--primary-color: #d12e36; // Contrast ratio: 5.05:1
}
// Evangelion Unit-01.
[data-theme='dark'] {
--primary-color: #c09bd9; // Contrast
}

View File

@@ -0,0 +1,7 @@
:root {
--primary-color: #1460bd; // Contrast ratio: 6.1:1
}
[data-theme='dark'] {
--primary-color: #e6c212; // Contrast ratio: 9.48:1
}

7
sass/skins/lavender.scss Normal file
View File

@@ -0,0 +1,7 @@
:root {
--primary-color: #9055d8; // Contrast ratio: 4.69:1
}
[data-theme='dark'] {
--primary-color: #cba2e8; // Contrast ratio: 7.74:1
}

View File

@@ -0,0 +1,12 @@
// WARNING! This skin, in light theme, may not provide optimal contrast for readability
// and might not be suitable for users with certain types of visual impairment.
// Furthermore, low contrast will affect your Google Lighthouse rating.
// For more information on web accessibility: https://www.w3.org/WAI/WCAG21/Understanding/contrast-minimum.html
:root {
--primary-color: #f56a00; // Contrast ratio: 3.02:1. Not very accessible.
}
[data-theme='dark'] {
--primary-color: #ec984f; // Contrast ratio: 7.19:1. Accessible.
}

View File

@@ -0,0 +1,12 @@
// WARNING! This skin, in light theme, may not provide optimal contrast for readability
// and might not be suitable for users with certain types of visual impairment.
// Furthermore, low contrast will affect your Google Lighthouse rating.
// For more information on web accessibility: https://www.w3.org/WAI/WCAG21/Understanding/contrast-minimum.html
:root {
--primary-color: #ffa057; // Contrast ratio: 2.01:1. Not very accessible.
}
[data-theme='dark'] {
--primary-color: #ffab7f; // Contrast ratio: 8.93:1. Accessible.
}

View File

@@ -0,0 +1,12 @@
// WARNING! This skin, in light theme, may not provide optimal contrast for readability
// and might not be suitable for users with certain types of visual impairment.
// Furthermore, low contrast will affect your Google Lighthouse rating.
// For more information on web accessibility: https://www.w3.org/WAI/WCAG21/Understanding/contrast-minimum.html
:root {
--primary-color: #ee59d2; // Contrast ratio: 3:1. Not very accessible.
}
[data-theme='dark'] {
--primary-color: #f49ee9; // Contrast ratio: 9.87:1. Accessible.
}

7
sass/skins/mint.scss Normal file
View File

@@ -0,0 +1,7 @@
:root {
--primary-color: #00804d; // Contrast ratio: 5:1
}
[data-theme='dark'] {
--primary-color: #00b86e; // Contrast ratio: 6.34:1
}

View File

@@ -0,0 +1,7 @@
:root {
--primary-color: #727272; // Contrast ratio: 4.81:1
}
[data-theme='dark'] {
--primary-color: #b3b3b3; // Contrast ratio: 7.86:1
}

7
sass/skins/red.scss Normal file
View File

@@ -0,0 +1,7 @@
:root {
--primary-color: #ca4963; // Contrast ratio: 4.52:1.
}
[data-theme='dark'] {
--primary-color: #ea535f; // Contrast ratio: 4.63:1.
}

7
sass/skins/sakura.scss Normal file
View File

@@ -0,0 +1,7 @@
:root {
--primary-color: #D33C5C; // Contrast ratio: 4.61:1
}
[data-theme='dark'] {
--primary-color: #fabed2; // Contrast ratio: 10.48:1
}

12
sass/skins/teal.scss Normal file
View File

@@ -0,0 +1,12 @@
// This file is never loaded; it's serves as reference for the default skin (in main.scss).
// When creating your own skin, you can use https://webaim.org/resources/contrastchecker/
// to verify the accessibility and readability of your colourscheme.
// The light background is #fff and the dark background is #1f1f1f.
:root {
--primary-color: #087e96; // Contrast ratio: 4.73:1
}
[data-theme='dark'] {
--primary-color: #91e0ee; // Contrast ratio: 11.06:1
}