style: added new screens and designs

This commit is contained in:
Cron1cle
2025-10-06 01:16:10 +02:00
parent badf355a2d
commit 8fb418c6f3
12 changed files with 718 additions and 141 deletions

View File

@@ -0,0 +1,40 @@
import { StyleSheet } from "react-native";
export default StyleSheet.create({
mainContainer: {
flex: 1,
backgroundColor: "hsl(221, 39%, 11%)",
},
header: {
height: 125,
backgroundColor: "hsl(221, 39%, 12%)",
alignItems: "center",
justifyContent: "center",
borderBottomWidth: 1,
borderBottomColor: "hsl(221, 39%, 15%)",
shadowColor: "#000",
shadowOffset: {
width: 0,
height: 3,
},
shadowOpacity: 0.25,
shadowRadius: 3.84,
elevation: 5,
},
title: {
color: "white",
fontSize: 38,
fontWeight: "bold",
marginTop: "auto",
marginBottom: 15,
},
liveBadgeContainer: {
position: "absolute",
top: 15,
left: 20,
backgroundColor: "red",
borderRadius: 10,
paddingVertical: 5,
paddingHorizontal: 10,
},
});