Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 868 Bytes

File metadata and controls

38 lines (26 loc) · 868 Bytes

🎨 Android Colors

A handy XML file containing a wide range of predefined colors to speed up Android UI development.

Includes:

  • 🌈 Material Design colors
  • 🟡 Transparent colors
  • 🔤 Common named colors
  • 🎯 Main brand/logo colors

📂 Usage

  1. Copy the many_colors.xml file into your Android project's res/values/ directory.
  2. Access any color in your layouts or code using the @color/color_name syntax.
<TextView
    android:text="Hello, Colors!"
    android:textColor="@color/amber_500" />

📌 Why Use This?

  • Saves time during UI prototyping.
  • Ensures consistent color naming.
  • Great for hackathons or fast UI iterations.

🤝 Contributing

Found a missing or incorrect color? Contributions are welcome!

  1. Fork the repo
  2. Make your changes
  3. Submit a pull request