Skip to content

Commit

Permalink
Revert to latest passing build
Browse files Browse the repository at this point in the history
  • Loading branch information
AxonC committed Mar 28, 2024
1 parent 3775664 commit 387ed54
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 56 deletions.
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
"bugsnag/bugsnag-laravel": "^2.0",
"doctrine/dbal": "~3.3",
"filament/filament": "^3.0-stable",
"filament/support": "^3.0",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^10.0",
"laravel/helpers": "^1.1",
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
plugins: {
'tailwindcss/nesting': 'postcss-nesting',
'tailwindcss/nesting': 'postcss-nesting',
tailwindcss: {},
autoprefixer: {},
},
Expand Down
67 changes: 14 additions & 53 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,59 +1,20 @@
/** @type {import('tailwindcss').Config} */

import preset from './vendor/filament/support/tailwind.config.preset';
const colors = require('tailwindcss/colors');

module.exports = {
presets: [require('./vendor/filament/support/tailwind.config.preset')],
darkMode: 'class',
content: [
'./resources/**/*.blade.php',
'./vendor/filament/**/*.blade.php',
],
theme: {
colors: {
// Core
brand: '#25ADE3',
transparent: 'transparent',
black: colors.black,
white: colors.white,

// Filament
current: 'currentColor',
custom: colors.sky,
primary: colors.sky,
secondary: colors.slate,
positive: colors.green,
success: colors.green,
warning: colors.amber,
negative: colors.red,
danger: colors.red,
info: colors.teal,

// Named
blue: colors.sky,
gray: colors.slate,
neutral: colors.neutral,
green: colors.green,
red: colors.red,
amber: colors.amber,
teal: colors.teal,
orange: colors.orange,
yellow: colors.yellow,
lime: colors.lime,
emerald: colors.emerald,
cyan: colors.cyan,
indigo: colors.indigo,
violet: colors.violet,
purple: colors.purple,
fuchsia: colors.fuchsia,
pink: colors.pink,
rose: colors.rose,
}
}, content: {
files: [
'./app/**/*.php',
'./resources/*.php',
'./resources/**/*.php',
"./resources/**/*.blade.php",
'./vendor/filament/**/*.blade.php',
'./storage/framework/views/*.php'
]
extend: {
colors: {
brand: '#25ADE3'
}
},
},
plugins: [require("@tailwindcss/forms")],
};
plugins: [
require('@tailwindcss/forms'),
],
}

0 comments on commit 387ed54

Please sign in to comment.