Files
native-app/tooling/tailwind/colors.ts

41 lines
564 B
TypeScript

import {
black,
blue,
gray,
green,
indigo,
pink,
purple,
red,
white,
yellow,
} from "tailwindcss/colors";
export default {
black: black,
white: white,
gray: gray,
red: red,
yellow: yellow,
green: green,
blue: blue,
indigo: indigo,
purple: purple,
pink: pink,
primary: {
100: "#C082FF",
300: "#8D44D6",
400: "#7831BF",
},
secondary: {
50: "#676790",
200: "#3F3F60",
300: "#32324F",
700: "#131322",
},
playerSettings: {
captionBackground: "#161b23",
},
background: "#0a0a12",
};