agentops/app/dashboard/constants/styles.ts

12 lines
723 B
TypeScript

export const cardTitleStyles = 'text-sm font-medium text-secondary dark:text-white';
export const cardHeaderStyles =
'flex flex-row items-center justify-between space-y-0 mb-1 mt-0 p-2 pb-0';
export const iconDivStyles =
'rounded-lg border-4 border-[#E3E5F8] bg-white hover:bg-[#E4E6F4] dark:border-none dark:bg-secondary dark:hover:bg-muted';
export const codeBlockStyles = 'whitespace-pre-wrap font-mono text-sm';
export const containerStyles =
'rounded-3xl border border-white bg-[#F7F8FF] px-4 py-4 shadow-md dark:bg-background sm:w-[369px] sm:px-6';
export const headingStyle = 'mt-2 text-xl font-medium tracking-tight text-primary';
export const labelStyle = 'mb-2 font-medium text-secondary dark:text-white';