Ramble-FE / components / TopMenuBar / styles.ts
styles.ts
Raw
import { StyleSheet } from "react-native";

export const commonStyles = StyleSheet.create({
    menuText: {
        fontSize: 18,
        fontWeight: "400",
    },
    activeMenuText: {
        color: "#007AFF",
        fontWeight: "500",
    },
});

export const colors = {
    primary: "#007AFF",
    border: "rgba(221, 221, 221, 0.6)",
    borderLight: "rgba(221, 221, 221, 0.3)",
    backgroundOverlay: "rgba(255, 255, 255, 0.95)",
    activeBackground: "rgba(0, 122, 255, 0.1)",
} as const;