Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. // Import colors of default TailwindCSS theme
  2. const { colors } = require('tailwindcss/defaultTheme');
  3.  
  4. module.exports = {
  5. theme: {
  6. // Manage breakpoints
  7. screens: {
  8. 'md': '768px',
  9. 'lg': '1024px',
  10. 'xl': '1280px'
  11. },
  12. colors: {
  13. black: colors.black,
  14. white: colors.white,
  15. gray: colors.gray,
  16. // Add our custom "blue" and "green" colors
  17. blue: {
  18. '300': '#00b7ff',
  19. '400': '#04Aef0',
  20. '500': '#08a5e1',
  21. '600': '#0795d3',
  22. '700': '#0586c5'
  23. },
  24. green: {
  25. '300': '#25e471',
  26. '400': '#29d970',
  27. '500': '#2dcf6e',
  28. '600': '#30c46c',
  29. '700': '#33ba6a'
  30. }
  31. },
  32. // Extend default spacing with 72, 84 and 96 values
  33. extend: {
  34. spacing: {
  35. '72': '18rem',
  36. '84': '21rem',
  37. '96': '24rem'
  38. }
  39. }
  40. },
  41. variants: {},
  42. // Remove useless default utilities
  43. corePlugins: {
  44. float: false,
  45. visibility: false,
  46. objectPosition: false
  47. },
  48. plugins: []
  49. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement