Giter VIP home page Giter VIP logo

Comments (4)

innocenzi avatar innocenzi commented on May 14, 2024

Hi, no. I plan on adding variable support. I'm not sure how to implement that yet, but my goal is to create a CSS properties integration with Tailwind.

from tailwindcss-theming.

innocenzi avatar innocenzi commented on May 14, 2024

In the meantime, you can still do it manually. You'd have to add a --font-title: Raleway, "Open Sans", Roboto; variable to any theme class (:root for instance), and add the following Tailwind config:

module.exports = {
  theme: {
    fontFamily: {
      title: ['var(--font-title)'],
    }
  },
};

from tailwindcss-theming.

innocenzi avatar innocenzi commented on May 14, 2024

I found the time to work on the custom properties features.

Now you can call .variable('font-title', ['Roboto', '"Segoe UI"', 'Arial']) on your theme to generate :theme-name { --font-title: Roboto,"Seoge UI",Arial } in it instead of manually having to write this variable in your CSS file.

I still have to work on tying this feature to Tailwind's configuration.

from tailwindcss-theming.

innocenzi avatar innocenzi commented on May 14, 2024

@muhajirdev Hey, I recently released v2.2.0 in which you can now properly have a font variable in your themes.

new Theme()
  .variable('title', [ 'Roboto', '"Segoe UI"' ], 'fontFamily');

The third argument is the name of the Tailwind's core plugin you want to extend. In this case, a variable which name will be --font-family-title will be generated and the Tailwind utility .font-title will be created as well. :)

It's a matter of time until I add a .font() and other aliases on the theme builder.

from tailwindcss-theming.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.