> For the complete documentation index, see [llms.txt](https://boltuix.gitbook.io/material-uix-kotlin-material-design-ver-1.1/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://boltuix.gitbook.io/material-uix-kotlin-material-design-ver-1.1/basics/markdown.md).

# 🎨 Customizing Colors in Your Project

```
<resources>
    <!-- 🖌️ Core Colors -->
    <color name="colorPrimary">#1976D2</color>
    <color name="colorPrimaryDark">#1565C0</color>
    <color name="colorPrimaryLight">#1E88E5</color>
    <color name="colorAccent">#FF4081</color>

    <!-- ✨ Transparency and Scrim Colors -->
    <color name="colorScrim">#66434343</color>
    <color name="transparent">#00000000</color>

    <!-- ⚫ Core Theme Colors -->
    <color name="black">#FF000000</color>
    <color name="white">#FFFFFFFF</color>

    <!-- 🎨 Material Design Theme Colors -->
    <!-- 🌞 Light Theme Colors -->
    <color name="md_theme_light_primary">#0053DA</color>
    <color name="md_theme_light_onPrimary">#FFFFFF</color>
    <color name="md_theme_light_background">#FEFBFF</color>

    <!-- 🌚 Dark Theme Colors -->
    <color name="md_theme_dark_onPrimary">#002A79</color>

    <!-- 🟢 General Theme Colors -->
    <color name="md_theme_primary">#415F91</color>
    <color name="md_theme_onPrimary">#FFFFFF</color>

    <!-- 🌈 Gradient Colors -->
    <color name="colorGradientStart">#FF8C42</color> <!-- Soft Orange -->
    <color name="colorGradientCenter">#FF3CAC</color> <!-- Warm Pink -->
    <color name="colorGradientEnd">#562B7C</color>  <!-- Deep Purple -->

    <!-- ❤️ Red Colors -->
    <color name="red_500">#F44336</color>

    <!-- 💚 Green Colors -->
    <color name="green_400">#66BB6A</color>

    <!-- 💛 Yellow Colors -->
    <color name="yellow_600">#FDD835</color>

    <!-- 💙 Blue Colors -->
    <color name="blue_500">#2196F3</color>

    <!-- 🟣 Purple Colors -->
    <color name="deep_purple_800">#4527A0</color>

    <!-- 🔵 Teal Colors -->
    <color name="teal_200">#80CBC4</color>

    <!-- 🧡 Orange Colors -->
    <color name="orange_500">#FF9800</color>

    <!-- 💖 Pink Colors -->
    <color name="pink_500">#E91E63</color>

    <!-- 🔷 Indigo Colors -->
    <color name="indigo_600">#3949AB</color>

    <!-- 🌿 Light Green Colors -->
    <color name="light_green_900">#33691E</color>

    <!-- 🟪 Application Specific Colors -->
    <color name="colorPrimary">#4285F4</color>
    <color name="colorPrimaryLight3">#B3CEFA</color>

    <!-- 🔥 Deep Orange -->
    <color name="deep_orange_400">#FF7043</color>
</resources>

```

#### 🌟 **Explanation of Sections:**

* **Core Colors**: Defines the primary colors used throughout your app.
* **Transparency and Scrim Colors**: Handles transparency levels for UI components.
* **Material Design Theme Colors**: These colors align with Material Design guidelines, separated into light and dark theme variations.
* **Gradient Colors**: Useful for backgrounds or dynamic elements.
* **Red, Green, Yellow, Blue, Purple, Teal, Orange, Pink, Indigo, Light Green Colors**: Predefined colors that you can use in your app to align with branding or UI design.
* **Application-Specific Colors**: Custom colors specific to your app design, allowing for easy adjustments of themes or styles.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://boltuix.gitbook.io/material-uix-kotlin-material-design-ver-1.1/basics/markdown.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
