forked from mrwyndham/fastpocket
12 lines
327 B
TypeScript
12 lines
327 B
TypeScript
import tw from '../tailwind.config'
|
|
|
|
export default tw.daisyui.themes[0];
|
|
|
|
export function hexToRgb(hex: string) {
|
|
var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
|
|
return result ? {
|
|
r: parseInt(result[1], 16),
|
|
g: parseInt(result[2], 16),
|
|
b: parseInt(result[3], 16)
|
|
} : null;
|
|
} |