stylelint-root-colors 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,17 +50,17 @@ The following screenshot shows a user-defined dark mode configuration in Firefox
|
|
|
50
50
|
|
|
51
51
|
▼ Internet Explorer 3 (1996) <q>General</q> Settings
|
|
52
52
|
|
|
53
|
-
<img src="assets/setting_ie3.png" alt="Dialog with color selection palettes for Text, Background, Visited Links, and Unvisited Links" width="404" height="448">
|
|
53
|
+
<img src="https://raw.githubusercontent.com/SaekiTominaga/stylelint-plugin/refs/heads/main/packages/root-colors/assets/setting_ie3.png" alt="Dialog with color selection palettes for Text, Background, Visited Links, and Unvisited Links" width="404" height="448">
|
|
54
54
|
|
|
55
55
|
▼ Firefox 130 (2024) <q>Colors</q> Settings
|
|
56
56
|
|
|
57
|
-
<img src="assets/setting_firefox130.png" alt="Dialog with color selection palettes for Text, Background, Unvisited Links, and Visited Links" width="1780" height="1386">
|
|
57
|
+
<img src="https://raw.githubusercontent.com/SaekiTominaga/stylelint-plugin/refs/heads/main/packages/root-colors/assets/setting_firefox130.png" alt="Dialog with color selection palettes for Text, Background, Unvisited Links, and Visited Links" width="1780" height="1386">
|
|
58
58
|
|
|
59
59
|
And around 2024, browsers began implementing forced dark mode.
|
|
60
60
|
|
|
61
61
|
▼ iOS Vivaldi 7.7 (2025) <q>Appearance & Theme</q> Settings
|
|
62
62
|
|
|
63
|
-
<img src="assets/setting_ios-vivaldi7.7.png" alt="Dialog with a switch control for “Force a dark theme on all websites”" width="2360" height="1575">
|
|
63
|
+
<img src="https://raw.githubusercontent.com/SaekiTominaga/stylelint-plugin/refs/heads/main/packages/root-colors/assets/setting_ios-vivaldi7.7.png" alt="Dialog with a switch control for “Force a dark theme on all websites”" width="2360" height="1575">
|
|
64
64
|
|
|
65
65
|
In this case, if only either `color` or `background-color` is specified in the root element through producer stylesheets, the text will be unreadable in some cases.
|
|
66
66
|
|
|
@@ -68,7 +68,7 @@ The following screenshot shows a web page with `body { color: black }` displayed
|
|
|
68
68
|
|
|
69
69
|
▼ iOS Vivaldi 7.7 (2025) Rendering
|
|
70
70
|
|
|
71
|
-
<img src="assets/rendaring_ios-vivaldi7.7.png" alt="The background color is light gray, and the text color is white" width="1640" height="1025">
|
|
71
|
+
<img src="https://raw.githubusercontent.com/SaekiTominaga/stylelint-plugin/refs/heads/main/packages/root-colors/assets/rendaring_ios-vivaldi7.7.png" alt="The background color is light gray, and the text color is white" width="1640" height="1025">
|
|
72
72
|
|
|
73
73
|
See also [F24 in Techniques for WCAG 2.2](https://www.w3.org/WAI/WCAG22/Techniques/failures/F24).
|
|
74
74
|
|