1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//! CSS Generator Module
//!
//! This module provides the main CSS generation interface,
//! orchestrating the various parser modules to generate CSS.
//!
//! ## Example
//!
//! ```rust
//! use tailwind_rs_core::CssGenerator;
//!
//! // Create a CSS generator
//! let mut generator = CssGenerator::new();
//!
//! // Add classes (returns Result<()>)
//! generator.add_class("bg-blue-500").unwrap();
//! generator.add_class("text-white").unwrap();
//! generator.add_class("hover:bg-blue-600").unwrap();
//!
//! // Generate CSS
//! let css = generator.generate_css();
//! // Returns actual CSS with properties like:
//! // .bg-blue-500 { background-color: #3b82f6; }
//! // .text-white { color: #ffffff; }
//! // .hover\:bg-blue-600:hover { background-color: #2563eb; }
//! ```
// Re-export main types and functionality
pub use ;
pub use CssGenerator;
pub use CssOutputGenerator;
pub use VariantParser;
pub use *;