Skip to content

Instantly share code, notes, and snippets.

@RustyToms
Created September 15, 2017 14:17
Show Gist options
  • Save RustyToms/c41cda14f0ee615e1b3eabd68597557e to your computer and use it in GitHub Desktop.
Save RustyToms/c41cda14f0ee615e1b3eabd68597557e to your computer and use it in GitHub Desktop.
marble textured background, monochromatic
.thing-with-background {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='100%' height='100%' data-ember-extension='1'%3E
%3Cfilter xmlns='http://www.w3.org/2000/svg' id='mono-chrome-turbulence'%3E
%3CfeTurbulence xmlns='http://www.w3.org/2000/svg' baseFrequency='.2' numOctaves='1'/%3E
%3CfeColorMatrix xmlns='http://www.w3.org/2000/svg' type='luminanceToAlpha'/%3E
%3CfeComponentTransfer xmlns='http://www.w3.org/2000/svg'%3E
%3CfeFuncA type='linear' slope='0.2'/%3E
%3C/feComponentTransfer%3E
%3C/filter%3E
%3Crect x='0' y='0' height='100%' width='100%' fill='#263f4a'/%3E
%3Crect x='0' y='0' height='100%' width='100%' filter='url(#mono-chrome-turbulence)'/%3E
%3C/svg%3E");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment