# creaminternet/theme-blank-sass

> SASS based version of Magento 2 Blank theme

`composer require creaminternet/theme-blank-sass`

Canonical URL: https://packagento.com/creaminternet/theme-blank-sass

## At a glance

- **Vendor**: creaminternet (https://packagento.com/creaminternet.md)
- **Latest version**: 1.6.3 — released 2024-10-18
- **Pricing**: Free
- **Package type**: Magento 2 theme
- **Status**: active, accepting new buyers

## Installation

Packagento is licence-gated, so even free packages need a licence on a project before Composer can resolve them.

1. **Sign in or create an account** at https://packagento.com/customer/account/.

2. **Add the package to your account.** Open https://packagento.com/creaminternet/theme-blank-sass and complete the free checkout. A licence is minted automatically.

3. **Create or pick a project, then activate the licence on it.**
   - Projects represent the Magento installs you deploy to. Manage them at https://packagento.com/projects/.
   - Activate the new licence on the project you'll deploy this package to. Activation is what generates the Composer credentials scoped to that project.

4. **Add the project credentials to your Magento codebase.**

   Grab the project's public + private key from https://packagento.com/projects/ (open the project, then its Credentials tab), and add them to `auth.json`:

   ```json
   {
     "http-basic": {
       "packagento.com": {
         "username": "ppk_live_...",
         "password": "psk_live_..."
       }
     }
   }
   ```

   Add the Packagento Composer repository to `composer.json`:

   ```json
   {
     "repositories": [
       { "type": "composer", "url": "https://packagento.com" }
     ]
   }
   ```

5. **Install and apply.**

   ```bash
   composer require creaminternet/theme-blank-sass:*
   bin/magento setup:upgrade
   bin/magento setup:di:compile
   bin/magento cache:flush
   ```

## What it does

SASS based version of Magento 2 Blank theme

## README

[![Packagist](https://img.shields.io/packagist/dt/creaminternet/theme-blank-sass.svg)](https://packagist.org/packages/creaminternet/theme-blank-sass)
## Magento 2 - Blank theme - SASS version

SASS based version of Magento 2 Blank theme, which aims to be as close to the core code as possible.

### Installation
1. Add this to your project dependecies list `composer require creaminternet/theme-blank-sass`
2. Set you application to `developer` mode
3. Run `bin/magento setup:upgrade` to register theme
4. Compile SASS files using [Frontools](https://github.com/creaminternet/magento2-frontools) or tools of choice

### Compatibility
* Magento 2.4: v1.5.0
* Magento 2.3: v1.2.0 or later
* Magento 2.2: v1.0.0 or later
* Magento 2.1: v0.11.0 or older
* Magento 2.0: v0.6.0 or older

### Bug reports and contribution rules
- Before reporting an issue, check if you can reproduce it on the clean Magento instance with LESS version of the Blank theme. If that's true, submit issue to the Magento 2 repository, not here
- If you know how to fix an issue, which is reproducible in Magento core, submit PR to the core product first, then here, with a link to PR in Magento 2 repository
- If issue is related only to the SASS port, feel free to submit issue or PR

### Questions
If you want to know more about this project, let's join [Magento Community Engineering Slack](https://tinyurl.com/engcom-slack) and ask questions on #magefront channel.

## Changelog

### [Unreleased]

### [1.5.0] - 2020-10-26
#### Changed
- Removed Magento framework dependency from `composer.json` to simply maintenance and add Magento 2.4 support (#241)

### [1.4.0] - 2020-03-10
#### Added
- PageBuilder support (#235)

#### Changed
- Reorganise `styles/vendor/magento-ui/_lib` Imports (#226)
- LESS fade mixin for rgba (#225)

### [1.3.0] - 2019-07-06
#### Added
- Email styles support (#84)

#### Changed
- Reorganize imports of Magento UI SASS related files to match less theme structure (#204)

#### Removed
- XML decleration that were removed in Magento 2.3 sass blank theme (#208)

## Recent Versions

| Version | Released |
|---|---|
| 1.6.3 | 2024-10-18 |
| 1.6.2 | 2024-08-20 |
| 1.6.1 | 2024-08-20 |
| 1.6.0 | 2024-07-10 |
| 1.5.1 | 2024-07-08 |
| 1.1.3 | 2018-09-17 |
| 1.1.2 | 2018-08-20 |
| 1.1.1 | 2018-07-17 |
| 1.1.0 | 2018-03-27 |
| 1.0.5 | 2018-03-27 |

Showing 10 of 37 versions. Full release history on https://packagento.com/creaminternet/theme-blank-sass.

## Quality

Latest release (1.6.3) passes the Packagento QA pipeline. Verdicts below are per-cell (Magento line × PHP version) for the matrixed tools, and run-once for the static / security tiers.


### Compatibility

Each Magento line is installed on its supported PHP versions, then the module is built (DI compile + static-content deploy). Cells show passed / failed / untested; staircase gaps render as `–`.

| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | Pass | Pass | – | – |
| 2.4.8 | – | Pass | Pass | – |
| 2.4.9 | – | – | Pass | Pass |


### Code Quality

Advisory checks against the module's source. Never affect the Compatibility verdict — a phpcs finding can't make a module incompatible.

#### Static Analysis

Coding standards (phpcs), mess detection (phpmd), copy-pasted code (cpd), PHP cross-version compatibility, composer.json validity. Each runs once for the whole module.

| Tool | Status | Findings | Summary |
|---|---|---|---|
| PHPCS | Pass | 0 |  |
| PHPMD | Pass | 0 |  |
| Cpd | Pass | 0 |  |
| Composer validate | Pass | 0 |  |

#### PHPStan

Type-checks the module against a real Magento install. Re-runs per Magento + PHP version because resolvable symbols differ between releases.

| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | Pass | Pass | – | – |
| 2.4.8 | – | Pass | Pass | – |
| 2.4.9 | – | – | Pass | Pass |


### Tests

Unit and integration suites run per Magento + PHP cell. Test failures speak to the module's behaviour, not its compatibility with a line, so they're reported here separately.

#### Unit Tests

| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | N/A | N/A | – | – |
| 2.4.8 | – | N/A | N/A | – |
| 2.4.9 | – | – | N/A | N/A |

#### Integration Tests

| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | N/A | N/A | – | – |
| 2.4.8 | – | N/A | N/A | – |
| 2.4.9 | – | – | N/A | N/A |


### Security

Dependency-advisory audit (composer audit) plus a source malware scan. A malware detection fails the version outright.

| Tool | Status | Findings | Summary |
|---|---|---|---|
| Composer audit | Pass | 0 |  |
| Malware scan | Pass | 0 |  |

## Licence and pricing

Free. A licence is still minted on checkout and bound to your project for Composer access — no payment step.

Refundable within 14 days of first purchase via https://packagento.com/account/refunds/.

## Install via Claude Code or any MCP client

The Packagento MCP server can run the licence + project + Composer steps above in one tool call:

```
purchase_and_install_packages(
  composer_names=["creaminternet/theme-blank-sass"],
  project_id="proj_xxx"
)
```

This handles cart, checkout, licence minting, project activation, and writes auth.json credentials. Connect a client with `claude mcp add packagento https://mcp.packagento.com`. Full setup at https://packagento.com/docs/mcp-setup.

## Vendor

creaminternet is a Magento 2 vendor on Packagento. See https://packagento.com/creaminternet.md for their full catalogue.

