Share SCSS code with CodeThis

Sass with curly braces. Share mixins, partials, and utility generators.

Paste SCSS now

What you get

  • SCSS-aware syntax highlighting via CodeMirror
  • Instant shareable link — no signup required
  • All paste durations (1 hour to forever)
  • Password protection for private pastes (Pro)
  • Works with the REST API and MCP server
  • Rich markdown and MDC components alongside code

Common use cases for SCSS pastes

  • Design-system mixins
  • Responsive breakpoint helpers
  • Theme token examples
  • Framework overrides

Example

@mixin breakpoint($size) {
  @if $size == sm { @media (min-width: 640px) { @content } }
  @else if $size == md { @media (min-width: 768px) { @content } }
}

.container {
  padding: 1rem;
  @include breakpoint(md) { padding: 2rem }
}

Related languages

Ready to share some SCSS?