| 1 |
.text-stroke { |
| 2 |
-webkit-text-stroke-width: var( |
| 3 |
--wp--custom--typography--text-stroke-width, |
| 4 |
2px |
| 5 |
); |
| 6 |
-webkit-text-stroke-color: var(--wp--preset--color--background); |
| 7 |
} |
| 8 |
|
| 9 |
.text-stroke--primary { |
| 10 |
-webkit-text-stroke-width: var( |
| 11 |
--wp--custom--typography--text-stroke-width, |
| 12 |
2px |
| 13 |
); |
| 14 |
-webkit-text-stroke-color: var(--wp--preset--color--primary); |
| 15 |
} |
| 16 |
|
| 17 |
.text-stroke--secondary { |
| 18 |
-webkit-text-stroke-width: var( |
| 19 |
--wp--custom--typography--text-stroke-width, |
| 20 |
2px |
| 21 |
); |
| 22 |
-webkit-text-stroke-color: var(--wp--preset--color--secondary); |
| 23 |
} |
| 24 |
|