Skip to content

Instantly share code, notes, and snippets.

@umkl
Created November 19, 2023 10:20
Show Gist options
  • Save umkl/fda4d37786454c7486b650d42cbd8fdc to your computer and use it in GitHub Desktop.
Save umkl/fda4d37786454c7486b650d42cbd8fdc to your computer and use it in GitHub Desktop.
add text outline to tailwind
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
.font-outline-1 {
-webkit-text-stroke: 1px white;
}
.font-outline-2 {
-webkit-text-stroke: 2px white;
}
.font-outline-3 {
-webkit-text-stroke: 2px white;
}
.font-outline-4 {
-webkit-text-stroke: 4px white;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment