t3.chat background texture?

Hey there 👋 any idea where I can find a simple texture such as the one used in t3.chat or motion.dev? I'd like one that works with both light and dark theme, but I am unsure where to begin looking. Any help is appreciated.
1 Reply
Aarvin Roshin
Aarvin Roshin•2w ago
Arc has something similar, they use a solid background-color and a repeated noise image. T3 Chat appears to use a random noise image as well, hosted at t3.chat/images/noise.png:
.bg-noise {
background-image: url(/images/noise.png);
background-size: auto;
background-repeat: repeat;
background-size: 96px 96px;
}
.bg-noise {
background-image: url(/images/noise.png);
background-size: auto;
background-repeat: repeat;
background-size: 96px 96px;
}

Did you find this page helpful?