From 92e7221c17b51573e3b461b8a86e7daeac9b75de Mon Sep 17 00:00:00 2001 From: Ronald Bourret Date: Wed, 17 Dec 2025 00:20:26 +0000 Subject: [PATCH] fix: Point to themes codelab --- codelabs/css/css.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/codelabs/css/css.md b/codelabs/css/css.md index 4738e0288..4d1cce0f0 100644 --- a/codelabs/css/css.md +++ b/codelabs/css/css.md @@ -14,6 +14,11 @@ In this codelab you will learn how to use CSS to customize the colours of: - Categories - Blocks +If you don't need the fine-grained control provided by CSS, consider using +themes instead. For more information, see the +[Customizing your themes](https://blocklycodelabs.dev/codelabs/theme-extension-identifier/index.html#0) +codelab. + ### What you'll build A simple Blockly workspace that uses the same Halloween colours as the @@ -489,7 +494,7 @@ several steps. Your first step is to set the `fill` and `stroke` of the logic blocks. Note that setting the `fill` and `stroke` is specific to the -[renderer](https://developers.google.com/blockly/guides/create-custom-blocks/renderers/overview), +[renderer](https://developers.google.com/blockly/guides/create-custom-blocks/renderers/overview) you are using. (In this codelab, you are using the Thrasos renderer.) An important consequence of this is that you need different CSS for different renderers.