What does the WCAG tell us? ๐ค
๐ WCAG 2.1 and 2.2 include criteria concerning the comprehensibility of content, which depends not only on the user's physical ability but also on their literacy, native language, and cultural context.
Some criteria to consider:
Error-related
color
Fortune/success-related
color
Attention-related
color
Prosperity-related
color
:root {
--background-color: #FFFFFF; /* Neutral white, default color */
}
[lang="zh"] { /* Chinese */
--background-color: #ff5151; /* Blue tone for Chinese, avoiding white */
}
body {
background-color: var(--background-color);
}
(it says from right to left, just like the text is meant to be read in Arabic ๐)
---> margin-right <---
โ margin-inline-end โ
.example { margin-block-start: 10rem; //equivalent to margin-top in ltr margin-block-end: 10rem; //equivalent to margin-bottom in ltr margin-inline-start: 10rem; //equivalent to margin-left in ltr margin-inline-end: 10rem; //equivalent to margin-right in ltr }
.example-together { margin-block: 10rem; //equivalent to margin-top and margin-bottom in ltr margin-inline: 10rem; //equivalent to margin-left and margin-right in ltr }
.example { padding-block-start: 10rem; //equivalent to padding-top in ltr padding-block-end: 10rem; //equivalent to padding-bottom in ltr padding-inline-start: 10rem; //equivalent to padding-left in ltr padding-inline-end: 10rem; //equivalent to padding-right in ltr }
.example-together { padding-block: 10rem; //equivalent to padding-top and padding-bottom in ltr padding-inline: 10rem; //equivalent to padding-left and padding-right in ltr }
.example { position: absolute; inset-block-start: 10rem; //equivalent to top in ltr inset-block-end: 10rem; //equivalent to bottom in ltr inset-inline-start: 10rem; //equivalent to left in ltr inset-inline-end: 10rem; //equivalent to right in ltr }
.example-together { position: absolute; inset-block: 10rem; //equivalent to top and bottom in ltr inset-inline: 10rem; //equivalent to left and right in ltr }
There are fonts that ensure compatibility with various glyphs characters ( เดฆเตเดฆเดฟ หแห )
๐ Noto Fonts
๐ Arial Unicode MS
๐ DejaVu Fonts
๐ Roboto
๐ Code2000
๐ Ecc...
body { font-family: 'Lobster' // only Latin Font }
body:lang(ar) { font-family: Noto Sans Arabic, sans-serif; }
@function answer($question) {
@return map.get(answers.$questions, $question);
}