Cheat sheet RGBA et opacite CSS
Valeurs rapides d opacite pour overlays, ombres, bordures et etats desactives avec syntaxe RGB alpha moderne.
| Usage | Valeur | Note |
|---|---|---|
| 5% | rgb(15 23 42 / 5%) | Teinte de fond tres subtile. |
| 10% | rgb(15 23 42 / 10%) | Bordure ou ombre douce. |
| 25% | rgb(15 23 42 / 25%) | Overlay visible ou texte desactive. |
| 50% | rgb(15 23 42 / 50%) | Fond modal sur interface claire. |
| 80% | rgb(15 23 42 / 80%) | Overlay fort ou fond tooltip. |
Snippet a copier
.modal-backdrop {
background: rgb(15 23 42 / 55%);
}
.subtle-border {
border: 1px solid rgb(15 23 42 / 10%);
}