blob: dc69feb73b70dc9b5d611925ca3015c4a83a0a8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>Color test</title>
</head>
<body>
<p style="color: rgb(255, 0, 0)">1) This text is pasted with color</p>
<p style="color: rgb(255 0 0 / 50%)">2) This text is also pasted with color, but the text pasted has a color which ignores the alpha channel</p>
<p style="color: rgba(255, 0, 0, 0.3)">3) This text is pasted without color</p>
</body>
</html>
|