Jeff Ong 44c1567ebd Place de-registration of default palettes inside conditional. (#2418) 4 年之前
..
assets 50957b5480 Seedlet: update docblock (#2420) 4 年之前
classes 3f93343a9d Seedlet: Fix Theme Review bugs (#2285) 5 年之前
inc 44c1567ebd Place de-registration of default palettes inside conditional. (#2418) 4 年之前
languages 322b096b1c Escape and translate aria labels. (#2193) 5 年之前
template-parts 63f020a88f Seedlet: fix landmark roles (#2395) 4 年之前
404.php 63f020a88f Seedlet: fix landmark roles (#2395) 4 年之前
LICENSE 66fe602d0c Adding 1.0 seedlet theme. 5 年之前
README.md fab2f37752 Update Seedlet readme. (#2181) 5 年之前
archive.php 63f020a88f Seedlet: fix landmark roles (#2395) 4 年之前
comments.php 66fe602d0c Adding 1.0 seedlet theme. 5 年之前
footer.php 63f020a88f Seedlet: fix landmark roles (#2395) 4 年之前
functions.php de000ad8a7 Seedlet: Use WordPress global to detect IE support (#2387) 4 年之前
header.php 63f020a88f Seedlet: fix landmark roles (#2395) 4 年之前
image.php 63f020a88f Seedlet: fix landmark roles (#2395) 4 年之前
index.php 63f020a88f Seedlet: fix landmark roles (#2395) 4 年之前
package-lock.json f55efa498b Seedlet: CSS Variables fallback support for IE11 (#2177) 5 年之前
package.json 0361b283b5 Add IE-specific editor stylesheet. 5 年之前
page.php 63f020a88f Seedlet: fix landmark roles (#2395) 4 年之前
postcss.config.js 283b23fd16 Seedlet: Fix layout grid margins (#2219) 5 年之前
readme.txt 50957b5480 Seedlet: update docblock (#2420) 4 年之前
screenshot.png 71dbe74c81 Seedlet: Optimize the screenshot 5 年之前
search.php 63f020a88f Seedlet: fix landmark roles (#2395) 4 年之前
single.php 63f020a88f Seedlet: fix landmark roles (#2395) 4 年之前
style-rtl.css 58832a160e Add auto-loading-homepage tag to SASS files (#2409) 4 年之前
style.css 50957b5480 Seedlet: update docblock (#2420) 4 年之前

README.md

Seedlet

Seedlet is simple, text-driven WordPress theme.

Along with being an excellent standalone theme, Seedlet is designed to be a parent-theme that allows folks to quickly create Gutenberg-ready child-themes for WordPress. [Instructions for how to make child themes are coming soon]

Development

To make changes to the styles, node.js is recommended:

  1. npm i to install the required development dependencies
  2. npm start to start the development server
  3. Make changes in assets/sass

Technical Overview

Principles

When you reduce a theme design down to a set of systematic design decisions, you end up with something called a Style Guide. The Seedlet system works by taking the rules of a Style Guide and expressing them through carefully placed variables or design tokens that influence the appearance of a WordPress site.

This unifies the design decisions needed to style the aesthetic appearance of Gutenberg Blocks, the theme Header + Footer areas, WooCommerce, Jetpack and more. It also syncs styles between the editor and the frontend so that you don’t need to hand-write CSS for both. This greatly speeds up the Gutenberg theme development process and reduces the amount of manual styling that typically goes into developing a theme.

Controls

The theme is built to offer the following controls:

  • Fonts - Font-family, size, weight, and line-height rules.
  • Colors - Primary, secondary, background, foreground and border colors.
  • Spacing - A default 8px vertical rhythm between all blocks and major components. It also includes utility spacing classes for negative margins.
  • Responsive Logic - Built-in responsive behavior across Blocks and Components.

Structure

The system itself lives in the /assets/sass directory as a collection of Sass partials broken up by scope and hierarchy. The partials get compiled down to singular CSS files that live in the main Seedlet directory and cascade downward like so:

Frontend

  • /assets/css/variables.css
  • /style.css

Editor

  • /assets/css/variables-editor.css
  • /style-editor.css

In each view, the variables are loaded first and then the stylesheet is loaded which applies the variables.

License

GNU General Public License v2 or later.

URI: LICENSE