1
2
3
4
5
6
7
8
use super::*;

impl TailwindBackgroundBrightness {
    #[inline]
    pub fn parse(rest: &[&str], arbitrary: &str) -> Result<Self> {
        Ok(Self { brightness: TailwindBrightness::parse(rest, arbitrary, false)? })
    }
}