Files
30-seconds-of-code/snippets/hex_to_rgb.md
2022-03-22 12:32:56 +02:00

23 lines
581 B
Markdown

---
title: Hex to RGB
tags: string,math
expertise: intermediate
author: maciv
firstSeen: 2020-09-13T01:08:21+03:00
lastUpdated: 2020-09-15T16:13:06+03:00
---
Converts a hexadecimal color code to a tuple of integers corresponding to its RGB components.
- Use a list comprehension in combination with `int()` and list slice notation to get the RGB components from the hexadecimal string.
- Use `tuple()` to convert the resulting list to a tuple.
```py
def hex_to_rgb(hex):
return tuple(int(hex[i:i+2], 16) for i in (0, 2, 4))
```
```py
hex_to_rgb('FFA501') # (255, 165, 1)
```