mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 18:13:25 +00:00
improve loading, caption renderer, season/episode selector, source selector
This commit is contained in:
@@ -1,4 +1,27 @@
|
||||
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",
|
||||
|
@@ -1,9 +1,14 @@
|
||||
import type { Config } from "tailwindcss";
|
||||
|
||||
import base from "./base";
|
||||
import colors from "./colors";
|
||||
|
||||
export default {
|
||||
content: base.content,
|
||||
presets: [base],
|
||||
theme: {},
|
||||
theme: {
|
||||
extend: {
|
||||
colors,
|
||||
},
|
||||
},
|
||||
} satisfies Config;
|
||||
|
Reference in New Issue
Block a user