Skip to content

Commit

Permalink
Update tailwind config with new colros
Browse files Browse the repository at this point in the history
I've kept `slate` and `gray` colors until we phase them out
  • Loading branch information
ryansrofe committed Nov 13, 2023
1 parent 2bc08f4 commit 9e3503b
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions packages/webui/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,56 @@
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
export default {
darkMode: ['class'],
content: ['./src/index.html', './src/**/*.tsx'],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.gray,
slate: colors.slate,
apple: {
50: '#F3FBF2',
100: '#E4F8E0',
200: '#CAEFC3',
300: '#9DE093',
400: '#6CC95F',
500: '#48AE39',
600: '#378F2A',
700: '#2D7124',
800: '#275A21',
900: '#214A1D',
950: '#0D280B',
},
manatee: {
50: '#F5F7F8',
100: '#EEEFF1',
200: '#DFE1E6',
300: '#CBCFD6',
400: '#B5B9C4',
500: '#A1A5B3',
600: '#8D90A1',
700: '#787B8A',
800: '#626471',
900: '#52535D',
950: '#303136',
},
shark: {
50: '#E8EBEC',
100: '#D8DCDF',
200: '#B6BFC3',
300: '#94A3A7',
400: '#73878C',
500: '#57686A',
600: '#3C4849',
700: '#202727',
800: '#191F1E',
900: '#121616',
950: '#0F1212',
},
},
extend: {
fontSize: {
'2xs': ['0.6rem', '0.9rem'],
Expand Down

0 comments on commit 9e3503b

Please sign in to comment.