Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
omniagents / omniagents / backends / web / ui / tailwind.config.js
Size: Mime:
import typography from '@tailwindcss/typography'

export default {
  content: [
    './index.html',
    './src/**/*.{ts,tsx}',
  ],
  theme: {
    extend: {
      keyframes: {
        slideInRight: {
          from: { opacity: '0', transform: 'translateX(100%)' },
          to: { opacity: '1', transform: 'translateX(0)' },
        },
      },
      colors: {
        tweetBlue: 'rgb(var(--color-tweetBlue) / <alpha-value>)',
        bgMain: 'rgb(var(--color-bgMain) / <alpha-value>)',
        bgColumn: 'rgb(var(--color-bgColumn) / <alpha-value>)',
        bgCard: 'rgb(var(--color-bgCard) / <alpha-value>)',
        bgCardAlt: 'rgb(var(--color-bgCardAlt) / <alpha-value>)',
        textSubtle: 'rgb(var(--color-textSubtle) / <alpha-value>)',
        successGreen: 'rgb(var(--color-successGreen) / <alpha-value>)',
        warningOrange: 'rgb(var(--color-warningOrange) / <alpha-value>)',
        errorRed: 'rgb(var(--color-errorRed) / <alpha-value>)',
        textPrimary: 'rgb(var(--color-textPrimary) / <alpha-value>)',
        textHeading: 'rgb(var(--color-textHeading) / <alpha-value>)',
        textSecondary: 'rgb(var(--color-textSecondary) / <alpha-value>)',
      },
    },
  },
  plugins: [typography],
}