1234567891011121314151617181920212223 |
- #ifndef ATOM_COMMON_COLOR_UTIL_H_
- #define ATOM_COMMON_COLOR_UTIL_H_
- #include <string>
- #include "third_party/skia/include/core/SkColor.h"
- namespace atom {
- SkColor ParseHexColor(const std::string& name);
- std::string ToRGBHex(SkColor color);
- }
- #endif
|