-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: change primary color to vatsim green
- Loading branch information
1 parent
7838fc7
commit 0a6a493
Showing
8 changed files
with
553 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
{} | ||
{ | ||
"/css/filament.css": "/css/filament.css" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "../../vendor/filament/filament/resources/css/app.css"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
const colors = require('tailwindcss/colors') | ||
|
||
const vatsimIndigo = { | ||
DEFAULT: '#2B3990', | ||
'50': '#949EDF', | ||
'100': '#8490DA', | ||
'200': '#6574D1', | ||
'300': '#4557C7', | ||
'400': '#3445AF', | ||
'500': '#2B3990', | ||
'600': '#1E2865', | ||
'700': '#11173A', | ||
'800': '#04060E', | ||
'900': '#000000' | ||
} | ||
|
||
const vatsimGreen = { | ||
DEFAULT: '#29B473', | ||
'50': '#A9EBCC', | ||
'100': '#99E8C3', | ||
'200': '#77E0AF', | ||
'300': '#56D99C', | ||
'400': '#35D188', | ||
'500': '#29B473', | ||
'600': '#1F8656', | ||
'700': '#145939', | ||
'800': '#0A2B1B', | ||
'900': '#000000' | ||
} | ||
|
||
const vatsimBlue = { | ||
DEFAULT: '#2483C5', | ||
'50': '#B0D6F1', | ||
'100': '#9FCDED', | ||
'200': '#7CBBE7', | ||
'300': '#5AA9E1', | ||
'400': '#3798DB', | ||
'500': '#2483C5', | ||
'600': '#1B6396', | ||
'700': '#134466', | ||
'800': '#0A2437', | ||
'900': '#010507' | ||
} | ||
|
||
module.exports = { | ||
content: [ | ||
'./resources/**/*.blade.php', | ||
'./vendor/filament/**/*.blade.php', | ||
], | ||
darkMode: 'class', | ||
theme: { | ||
extend: { | ||
colors: { | ||
'vatsim-indigo': vatsimIndigo, | ||
'vatsim-blue': vatsimBlue, | ||
'vatsim-green': vatsimGreen, | ||
danger: colors.rose, | ||
primary: vatsimGreen, | ||
success: colors.green, | ||
warning: colors.amber, | ||
}, | ||
}, | ||
}, | ||
plugins: [ | ||
require('@tailwindcss/forms'), | ||
require('@tailwindcss/typography'), | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters