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
  • Optional expiration (7 days, 30 days, permanent)
  • Password protection for private pastes
  • 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?